Skip to content

Commit 402dafb

Browse files
committed
pylint
1 parent fe1ce51 commit 402dafb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

causal_testing/__main__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,11 @@ def main() -> None:
4949
# Now stitch the results together from the temporary files
5050
all_results = []
5151
for file_path in output_files:
52-
with open(file_path, "r") as f:
52+
with open(file_path, "r", encoding="utf-8") as f:
5353
all_results.extend(json.load(f))
5454

5555
# Save the final stitched results to your desired location
56-
with open(args.output, "w") as f:
56+
with open(args.output, "w", encoding="utf-8") as f:
5757
json.dump(all_results, f, indent=4)
5858
else:
5959
logging.info("Running tests in regular mode")

0 commit comments

Comments
 (0)