Skip to content

Commit

Permalink
forgot to return the list in the parallelization function
Browse files Browse the repository at this point in the history
  • Loading branch information
charlie-costanzo committed Nov 15, 2023
1 parent 40a6e9a commit 9127ac1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions runbooks/data/change_blob_storage_class.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,9 @@
" \n",
" for item in file_list:\n",
" target_file_name = item.name\n",
" all_target_files.append(target_file_name)"
" all_target_files.append(target_file_name)\n",
" \n",
" return all_target_files"
]
},
{
Expand Down Expand Up @@ -218,8 +220,6 @@
" for ud in unique_split_subpath_names_dirty:\n",
" ud = ud.replace('\\n', '')\n",
" unique_split_subpath_names_clean.append(ud)\n",
" \n",
" \n",
" \n",
" for unique_subpath in tqdm(unique_split_subpath_names_clean):\n",
" \n",
Expand Down

0 comments on commit 9127ac1

Please sign in to comment.