From 0b276eca4cb14215af318703173d6050298dcdb3 Mon Sep 17 00:00:00 2001 From: sweetbrulee Date: Wed, 24 Jul 2024 20:47:53 +0800 Subject: [PATCH] chore: Fix usage text --- files_flattener/common/__init__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/files_flattener/common/__init__.py b/files_flattener/common/__init__.py index 5ae8ec8..c1a9fa9 100644 --- a/files_flattener/common/__init__.py +++ b/files_flattener/common/__init__.py @@ -3,13 +3,13 @@ __all__ = ["logger"] USAGE = """ -Usage: flt [] +Usage: flt [] Parameters: - : The path of the directory containing the files to be flattened. + : The path of the local directory or the URL of the remote repository containing the files to be flattened. : The path of the output file where the contents of the files will be written. []: (Optional) The path to a file containing patterns of files to ignore. - If not provided, the script will look for a '.ignore' file in the specified directory. + If not provided, the script will look for a '.ignore' file under the specified identifier path. If the '.ignore' file is not found, no files will be ignored. """