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 fe1ce51 commit 402dafbCopy full SHA for 402dafb
causal_testing/__main__.py
@@ -49,11 +49,11 @@ def main() -> None:
49
# Now stitch the results together from the temporary files
50
all_results = []
51
for file_path in output_files:
52
- with open(file_path, "r") as f:
+ with open(file_path, "r", encoding="utf-8") as f:
53
all_results.extend(json.load(f))
54
55
# Save the final stitched results to your desired location
56
- with open(args.output, "w") as f:
+ with open(args.output, "w", encoding="utf-8") as f:
57
json.dump(all_results, f, indent=4)
58
else:
59
logging.info("Running tests in regular mode")
0 commit comments