diff --git a/cluster_tools/cluster_tools/schedulers/cluster_executor.py b/cluster_tools/cluster_tools/schedulers/cluster_executor.py index f4c5ef067..d35d77394 100644 --- a/cluster_tools/cluster_tools/schedulers/cluster_executor.py +++ b/cluster_tools/cluster_tools/schedulers/cluster_executor.py @@ -142,7 +142,7 @@ def __init__( self.meta_data["logging_setup_fn"] = kwargs["logging_setup_fn"] @classmethod - def as_completed(cls, futs: List[Future[_T]]) -> Iterator[Future[_T]]: + def as_completed(cls, futs: List["Future[_T]"]) -> Iterator["Future[_T]"]: return futures.as_completed(futs) @classmethod