From 67f2e086583989c0b2864e34acfd4e52c211ca1e Mon Sep 17 00:00:00 2001 From: Jim Edwards Date: Fri, 13 Dec 2024 15:04:14 -0700 Subject: [PATCH] pylint error in waitfortests --- CIME/wait_for_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CIME/wait_for_tests.py b/CIME/wait_for_tests.py index 15d970356fa..fb0b5a1a555 100644 --- a/CIME/wait_for_tests.py +++ b/CIME/wait_for_tests.py @@ -37,7 +37,7 @@ def get_test_time(test_path): ############################################################################### ts = TestStatus(test_dir=test_path) comment = ts.get_comment(RUN_PHASE) - if comment is None or "time=" not in comment: + if "time=" not in comment: logging.warning("No run-phase time data found in {}".format(test_path)) return 0 else: