Skip to content

Commit

Permalink
fixing linter
Browse files Browse the repository at this point in the history
  • Loading branch information
dwang3851 committed Oct 27, 2024
1 parent b186419 commit c4c6868
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,10 @@ def run(self):
# things like runjob timeouts and makefile errors to be
# normal termination and doesn't reschedule the job.
elapsed_secs = time.time() - start_time
self.log.info("Success: job %s:%d finished after %d seconds" % (self.job.name, self.job.id, elapsed_secs))
self.log.info(
"Success: job %s:%d finished after %d seconds"
% (self.job.name, self.job.id, elapsed_secs)
)

# Move the job from the live queue to the dead queue
# with an explanatory message
Expand Down

0 comments on commit c4c6868

Please sign in to comment.