Skip to content

Commit

Permalink
Fix indenting from suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
csm10495 committed Dec 18, 2024
1 parent 2c0b578 commit a878221
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Lib/concurrent/futures/process.py
Original file line number Diff line number Diff line change
Expand Up @@ -881,8 +881,8 @@ def terminate_workers(self, signal=signal.SIGTERM):
# The process is already exited/closed out.
continue

try:
os.kill(pid, signal)
except ProcessLookupError:
# The process just ended before our signal
pass
try:
os.kill(pid, signal)
except ProcessLookupError:
# The process just ended before our signal
continue

0 comments on commit a878221

Please sign in to comment.