Skip to content

Commit

Permalink
file_handler updated
Browse files Browse the repository at this point in the history
  • Loading branch information
martinkilbinger committed Oct 21, 2024
1 parent 27dc9d2 commit 805fe03
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions shapepipe/pipeline/file_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -651,18 +651,12 @@ def _create_module_run_dirs(self, module, run_name):
"output",
)

<<<<<<< HEAD
if not os.path.exists(self._module_dict[module][run_name]['run_dir']):
self.mkdir(self._module_dict[module][run_name]['run_dir'])
if not os.path.exists(self._module_dict[module][run_name]['log_dir']):
self.mkdir(self._module_dict[module][run_name]['log_dir'])
if not os.path.exists(self._module_dict[module][run_name]['output_dir']):
self.mkdir(self._module_dict[module][run_name]['output_dir'])
=======
self.mkdir(self._module_dict[module][run_name]["run_dir"])
self.mkdir(self._module_dict[module][run_name]["log_dir"])
self.mkdir(self._module_dict[module][run_name]["output_dir"])
>>>>>>> origin/v1.4

# Set current output directory to module output directory
self.output_dir = self._module_dict[module][run_name]["output_dir"]
Expand Down

0 comments on commit 805fe03

Please sign in to comment.