Removing positional-only arguments for compatibility with Python 3.7

This commit is contained in:
Eliyahu Duvidzon 2022-11-20 01:59:05 +02:00 committed by Ivan Habunek
parent ddf1b10e56
commit 533c91d133

View File

@ -117,7 +117,7 @@ async def download_all(
sources: List[str],
targets: List[str],
workers: int,
/, *,
*,
rate_limit: Optional[int] = None
):
progress = Progress(len(sources))