Update typing

Co-authored-by: Benedikt <wisp3rwind@posteo.eu>
This commit is contained in:
Serene 2022-11-26 21:30:42 +10:00 committed by Serene-Arc
parent d82e526044
commit 7e6d716f26

View file

@ -1056,7 +1056,7 @@ def asciify_path(path: AnyStr, sep_replace: str) -> str:
return os.sep.join(path_components)
def par_map(transform: Callable, items: Sequence):
def par_map(transform: Callable, items: Iterable):
"""Apply the function `transform` to all the elements in the
iterable `items`, like `map(transform, items)` but with no return
value.