Skip to content

Commit

Permalink
rename CLI argument to clarify copy behavior
Browse files Browse the repository at this point in the history
  • Loading branch information
danielfromearth committed Nov 8, 2023
1 parent 7d7de29 commit b26a2d1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions concatenator/run_stitchee.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ def parse_args(args: list) -> tuple[list[str], str, str, bool, str | None]:
help="Dimension to concatenate along, if possible.",
)
parser.add_argument(
"--make_dir_copy",
"--copy_input_files_to_temp_dir",
action="store_true",
help="Make a duplicate of the input directory to avoid modification of input files. "
"This is useful for testing, but uses more disk space.",
help="Make a duplicate of the input files in a temporary directory to avoid modification "
"of input files. This is useful for testing, but uses more disk space.",
)
parser.add_argument(
"--keep_tmp_files",
Expand Down

0 comments on commit b26a2d1

Please sign in to comment.