File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -400,13 +400,14 @@ def download_files(
400400 file_list = resolve_files (files )
401401 destination_path = resolve_destination_path (destination )
402402
403- if not all (file .experiment_name for file in file_list ):
403+ if not all (file .run_id for file in file_list ):
404404 raise NeptuneUserError (
405405 "Some files passed to nq_runs.download_files don't have associated run IDs. "
406406 "This is likely because you passed files not originating from the runs API. "
407407 "Please use files from the runs API instead by fetching them with "
408408 "nq_runs.fetch_series() or nq_runs.fetch_experiments_table()."
409409 )
410+
410411 return _download_files .download_files (
411412 files = file_list ,
412413 destination = destination_path ,
You can’t perform that action at this time.
0 commit comments