Skip to content

Commit c4c6868

Browse files
committed
fixing linter
1 parent b186419 commit c4c6868

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

worker.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,10 @@ def run(self):
321321
# things like runjob timeouts and makefile errors to be
322322
# normal termination and doesn't reschedule the job.
323323
elapsed_secs = time.time() - start_time
324-
self.log.info("Success: job %s:%d finished after %d seconds" % (self.job.name, self.job.id, elapsed_secs))
324+
self.log.info(
325+
"Success: job %s:%d finished after %d seconds"
326+
% (self.job.name, self.job.id, elapsed_secs)
327+
)
325328

326329
# Move the job from the live queue to the dead queue
327330
# with an explanatory message

0 commit comments

Comments
 (0)