Skip to content

Commit

Permalink
pylint error in waitfortests
Browse files Browse the repository at this point in the history
  • Loading branch information
jedwards4b committed Dec 13, 2024
1 parent fa7627c commit 67f2e08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CIME/wait_for_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 67f2e08

Please sign in to comment.