Skip to content

Commit 7eee7d4

Browse files
committed
pep fix
1 parent 0d84451 commit 7eee7d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/psij/executors/local.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ def _handle_sigchld(self) -> None:
151151
with self._cvar:
152152
try:
153153
self._cvar.notify_all()
154-
except RuntimeError as ex:
154+
except RuntimeError:
155155
# In what looks like rare cases, notify_all(), seemingly when combined with
156156
# signal handling, raises `RuntimeError: release unlocked lock`.
157157
# There appears to be an unresolved Python bug about this:

0 commit comments

Comments
 (0)