Skip to content

Commit

Permalink
fixed unexpected arguments passed problem
Browse files Browse the repository at this point in the history
  • Loading branch information
zhycheng614 committed Oct 4, 2024
1 parent 100a79a commit 012e881
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion nexa/general.py
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,8 @@ def download_file_with_progress(
file_path: Path,
chunk_size: int = 40 * 1024 * 1024,
max_workers: int = 20,
use_processes: bool = default_use_processes()
use_processes: bool = default_use_processes(),
**kwargs
):
file_path.parent.mkdir(parents=True, exist_ok=True)

Expand Down

0 comments on commit 012e881

Please sign in to comment.