Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion aiomultiprocess/pool.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
Callable,
Dict,
Generator,
Iterable,
Optional,
Sequence,
Tuple,
Expand Down Expand Up @@ -333,7 +334,7 @@ async def apply(
def map(
self,
func: Callable[[T], Awaitable[R]],
iterable: Sequence[T],
iterable: Iterable[T],
# chunksize: int = None, # todo: implement chunking maybe
) -> PoolResult[R]:
"""Run a coroutine once for each item in the iterable."""
Expand Down