We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce724a1 commit 95550e0Copy full SHA for 95550e0
robusta_krr/core/runner.py
@@ -121,7 +121,7 @@ def _process_result(self, result: Result) -> None:
121
122
with open(file_name, "w") as target_file:
123
# don't use rich when writing a csv or html to avoid line wrapping etc
124
- if settings.format == "csv" or settings.format == "html":
+ if settings.format == "csv" or settings.format == "html" or settings.format == "json" or settings.format == "yaml":
125
target_file.write(formatted)
126
else:
127
console = Console(file=target_file, width=settings.width)
0 commit comments