Skip to content

Commit

Permalink
Black
Browse files Browse the repository at this point in the history
Signed-off-by: liamhuber <[email protected]>
  • Loading branch information
liamhuber committed Jan 10, 2025
1 parent 81cbba7 commit be68cce
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pyiron_workflow/mixin/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,9 @@ def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.running: bool = False
self.failed: bool = False
self.executor: StdLibExecutor | tuple[Callable[..., StdLibExecutor], tuple, dict] | None = None
self.executor: (
StdLibExecutor | tuple[Callable[..., StdLibExecutor], tuple, dict] | None
) = None
# We call it an executor, but it can also be instructions on making one
self.future: None | Future = None
self._thread_pool_sleep_time: float = 1e-6
Expand Down

0 comments on commit be68cce

Please sign in to comment.