Skip to content

Commit

Permalink
Formatted file
Browse files Browse the repository at this point in the history
  • Loading branch information
leventeBajczi committed Feb 26, 2024
1 parent 4681b7a commit 9d131ba
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion contrib/slurm/slurmexecutor.py
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,9 @@ def get_checked_seff_result():
returncode = int(f.read())
logging.debug("Exit code in file %s: %d", exitcode_file, returncode)
else:
assert status != "COMPLETED", "Should never happen: exit code not found, but task was reported COMPLETED."
assert (
status != "COMPLETED"
), "Should never happen: exit code not found, but task was reported COMPLETED."
logging.debug("Exit code not found in file: %s", exitcode_file)
returncode = 0

Expand Down

0 comments on commit 9d131ba

Please sign in to comment.