From be68cce5be182dae546a7fab46c8fa3f27de522f Mon Sep 17 00:00:00 2001 From: liamhuber Date: Fri, 10 Jan 2025 12:28:38 -0800 Subject: [PATCH] Black Signed-off-by: liamhuber --- pyiron_workflow/mixin/run.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pyiron_workflow/mixin/run.py b/pyiron_workflow/mixin/run.py index c932b44a..b7b11c7b 100644 --- a/pyiron_workflow/mixin/run.py +++ b/pyiron_workflow/mixin/run.py @@ -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