Skip to content

Commit

Permalink
Address flake8 issue
Browse files Browse the repository at this point in the history
  • Loading branch information
shreyas-arvindekar committed Jul 29, 2024
1 parent f5b6ec8 commit 9322811
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyext/src/wrapper_v6.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ def get_curr_processes_and_terminated_runs(processes: dict):
f"Terminated: {run[0].split('/')[-1]}, run_{run[1]} with "
f"exit code: {processes[run].returncode}"
)
if processes[run].returncode != 0:
print(f"Error:\n{processes[run].stderr.read()}")
if processes[run].returncode != 0:
print(f"Error: \n{processes[run].stderr.read()}")

processes.pop(run)

Expand Down

0 comments on commit 9322811

Please sign in to comment.