File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -106,9 +106,13 @@ def execute_tasks_h5(
106
106
resource_dict = task_resource_dict ,
107
107
)
108
108
if task_key not in memory_dict :
109
- if task_key not in os .listdir (cache_directory ) and "cache.h5out" not in os .listdir (os .path .join (cache_directory , task_key )):
109
+ if task_key not in os .listdir (
110
+ cache_directory
111
+ ) and "cache.h5out" not in os .listdir (
112
+ os .path .join (cache_directory , task_key )
113
+ ):
110
114
os .makedirs (os .path .join (cache_directory , task_key ), exist_ok = True )
111
- file_name = os .path .join (cache_directory , task_key , "cache.h5in" )
115
+ file_name = os .path .join (cache_directory , task_key , "cache.h5in" )
112
116
dump (file_name = file_name , data_dict = data_dict )
113
117
if not disable_dependencies :
114
118
task_dependent_lst = [
You can’t perform that action at this time.
0 commit comments