Skip to content

Commit aee97d9

Browse files
committed
change type to exception
1 parent 87d38ca commit aee97d9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/executorlib/standalone/batched.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
def batched_futures(
55
lst: list[Future], nested_skip_lst: list[Future[list]], n: int
6-
) -> list[list] | BaseException:
6+
) -> list[list] | Exception:
77
"""
88
Batch n completed future objects. If the number of completed futures is smaller than n and the end of the batch is
99
not reached yet, then an empty list is returned. If n future objects are done, which are not included in the skip_set

0 commit comments

Comments
 (0)