Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
normanrz committed Sep 26, 2023
1 parent 69c6117 commit 98f9692
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cluster_tools/cluster_tools/schedulers/cluster_executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 98f9692

Please sign in to comment.