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(
106106 resource_dict = task_resource_dict ,
107107 )
108108 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+ ):
110114 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" )
112116 dump (file_name = file_name , data_dict = data_dict )
113117 if not disable_dependencies :
114118 task_dependent_lst = [
You can’t perform that action at this time.
0 commit comments