From 8335e958ce463f34e3b6c7cec73010d34882bba9 Mon Sep 17 00:00:00 2001 From: "Michael Kavulich, Jr." Date: Fri, 7 Mar 2025 18:18:15 +0000 Subject: [PATCH] Make pylint happy --- tests/test_python/test_generate_FV3LAM_wflow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_python/test_generate_FV3LAM_wflow.py b/tests/test_python/test_generate_FV3LAM_wflow.py index ae1e174e1..53b8f7ccd 100644 --- a/tests/test_python/test_generate_FV3LAM_wflow.py +++ b/tests/test_python/test_generate_FV3LAM_wflow.py @@ -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)