Skip to content

Commit

Permalink
remove only-once-used variable binding
Browse files Browse the repository at this point in the history
  • Loading branch information
vreuter committed May 5, 2024
1 parent 7887306 commit 07fb60f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions pypiper/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -1290,7 +1290,6 @@ def proc_wrapup(i):
sleeptime = min((sleeptime + 0.25) * 3, 60 / len(processes))

# All jobs are done, print a final closing and job info
proc_message = "Command completed. {info}"
info = (
"Elapsed time: "
+ str(datetime.timedelta(seconds=self.time_elapsed(start_time)))
Expand All @@ -1307,7 +1306,7 @@ def proc_wrapup(i):

info += "\n" # finish out the
self.info("</pre>")
self.info(proc_message.format(info=info))
self.info("Command completed. {info}".format(info=info))

for rc in returncodes:
if rc != 0:
Expand Down

0 comments on commit 07fb60f

Please sign in to comment.