aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Schofield <git@ajschof.me>2025-02-19 02:32:09 +0000
committerAlex Schofield <git@ajschof.me>2025-02-19 02:32:09 +0000
commita4d1862161cf727447900f937c73ef77302a5d51 (patch)
treec24562d4b020cd49168bc3d15e3a9c427c699d6d
parentf2ee3e2815d084d92826606dab28fd261ccf1b6f (diff)
downloadgdpr-obfuscator-a4d1862161cf727447900f937c73ef77302a5d51.tar.gz
gdpr-obfuscator-a4d1862161cf727447900f937c73ef77302a5d51.zip
change help message for CLI --s3/--local choice
-rw-r--r--cli.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/cli.py b/cli.py
index e92148f..40d8087 100644
--- a/cli.py
+++ b/cli.py
@@ -24,10 +24,8 @@ def main():
# The user can only choose one of these options or the program will exit
# If not provided, the program will exit
loc = parser.add_mutually_exclusive_group(required=True)
- loc.add_argument("-l", "--local", help="Path to local CSV file")
- loc.add_argument(
- "-s", "--s3", help="S3 object path (example: s3://bucket-name/file)"
- )
+ loc.add_argument("-l", "--local", help="Local path to file")
+ loc.add_argument("-s", "--s3", help="URI path to file stored in S3")
# Require user to provide a list of PII fields to obfuscate
# e.g. --pii name email_address
git.ajschof.me — hosted by ajschofield — powered by cgit