Skip to content

Commit 7759fb2

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent fcb6c06 commit 7759fb2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

executorlib/interactive/shared.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,9 @@ def __init__(
135135
super().__init__(max_cores=executor_kwargs.get("max_cores", None))
136136
executor_kwargs["future_queue"] = self._future_queue
137137
executor_kwargs["spawner"] = spawner
138-
executor_kwargs["queue_join_on_shutdown"] = False # The same queue is shared over multiple threads
138+
executor_kwargs["queue_join_on_shutdown"] = (
139+
False # The same queue is shared over multiple threads
140+
)
139141
self._set_process(
140142
process=[
141143
RaisingThread(

0 commit comments

Comments
 (0)