Skip to content

Commit

Permalink
Merge pull request #469 from BrainPad/468
Browse files Browse the repository at this point in the history
Make it start even if dest_path parameter is not specified in CsvDuplicateRowDelete class.
  • Loading branch information
yasuhiro-ohba authored Oct 25, 2024
2 parents 586d61b + da8797b commit 06ffcce
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cliboa/scenario/transform/csv.py
Original file line number Diff line number Diff line change
Expand Up @@ -1060,7 +1060,8 @@ def execute(self, *args):
)
valid()

os.makedirs(self._dest_dir, exist_ok=True)
if self._dest_dir:
os.makedirs(self._dest_dir, exist_ok=True)

files = super().get_target_files(self._src_dir, self._src_pattern)

Expand Down

0 comments on commit 06ffcce

Please sign in to comment.