We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c822ffa commit b713387Copy full SHA for b713387
cebra/data/assets.py
@@ -93,7 +93,7 @@ def download_file_with_progress_bar(url: str,
93
)
94
95
# Create the directory and any necessary parent directories
96
- location_path.mkdir(exist_ok=True)
+ location_path.mkdir(parents=True, exist_ok=True)
97
98
filename = filename_match.group(1)
99
file_path = location_path / filename
0 commit comments