diff --git a/beets/util/__init__.py b/beets/util/__init__.py index a05512dd6..70f492e6c 100644 --- a/beets/util/__init__.py +++ b/beets/util/__init__.py @@ -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.