Fix typo in examples/downloader.py

This commit is contained in:
Bas Nijholt 2022-06-05 14:38:29 -07:00 committed by GitHub
parent e8a9466b94
commit 2a87610f79
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ def copy_url(task_id: TaskID, url: str, path: str) -> None:
def download(urls: Iterable[str], dest_dir: str):
"""Download multuple files to the given directory."""
"""Download multiple files to the given directory."""
with progress:
with ThreadPoolExecutor(max_workers=4) as pool: