Skip to content

Commit

Permalink
fix(zip): data type not used in url
Browse files Browse the repository at this point in the history
  • Loading branch information
wiwski committed Dec 7, 2023
1 parent eb11f07 commit 1e8c605
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 1e8c605

Please sign in to comment.