From b26a2d10535c42f1d12af83a304fb2f862a0c301 Mon Sep 17 00:00:00 2001 From: danielfromearth Date: Wed, 8 Nov 2023 09:56:30 -0500 Subject: [PATCH] rename CLI argument to clarify copy behavior --- concatenator/run_stitchee.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/concatenator/run_stitchee.py b/concatenator/run_stitchee.py index 580df22..c5a45ca 100644 --- a/concatenator/run_stitchee.py +++ b/concatenator/run_stitchee.py @@ -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",