Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
akashdhruv committed Oct 10, 2024
1 parent d8305f1 commit cb76db9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion figaro/lib/_upload.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def fileupload_from_list(client, config, filemap, foldermap, filelist):

num_procs = min(cpu_avail, len(filelist))

if num_procs == 1:
if num_procs in [0,1]:
[
fileupload_from_path(
dill.dumps(client), config, filemap, foldermap, file_path
Expand Down

0 comments on commit cb76db9

Please sign in to comment.