From 98f9692567ba2ffab9e01cd3a33528385923f772 Mon Sep 17 00:00:00 2001 From: Norman Rzepka Date: Tue, 26 Sep 2023 11:40:59 +0200 Subject: [PATCH] fixes --- cluster_tools/cluster_tools/schedulers/cluster_executor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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