Skip to content

Commit

Permalink
Make pylint happy
Browse files Browse the repository at this point in the history
  • Loading branch information
mkavulich committed Mar 7, 2025
1 parent 5184504 commit 8335e95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_python/test_generate_FV3LAM_wflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def run_workflow(USHdir, logfile):
p.join()
exit_code = p.exitcode
if exit_code != 0:
with open(logfile, 'r') as fin:
with open(logfile, 'r', encoding='utf-8') as fin:
print(fin.read())
sys.exit(exit_code)

Expand Down

0 comments on commit 8335e95

Please sign in to comment.