Skip to content

Commit

Permalink
Merge pull request #278 from betagouv/fix/zip-no-data-type
Browse files Browse the repository at this point in the history
fix(zip): data type not used in url
  • Loading branch information
wiwski authored Dec 7, 2023
2 parents eb11f07 + 1e8c605 commit edf8d13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clients/azure/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ def iter_project_run_files(
projects_path_prefix = _get_projects_path()
dir_path = os.path.join(projects_path_prefix, project_name, "runs", run_name)
if data_type:
os.path.join(data_type)
dir_path = os.path.join(dir_path, data_type)
return self._iter_directory_files(dir_path)

def download_run_file(
Expand Down

0 comments on commit edf8d13

Please sign in to comment.