diff options
| author | Alex Schofield <git@ajschof.me> | 2025-02-19 02:32:09 +0000 |
|---|---|---|
| committer | Alex Schofield <git@ajschof.me> | 2025-02-19 02:32:09 +0000 |
| commit | a4d1862161cf727447900f937c73ef77302a5d51 (patch) | |
| tree | c24562d4b020cd49168bc3d15e3a9c427c699d6d | |
| parent | f2ee3e2815d084d92826606dab28fd261ccf1b6f (diff) | |
| download | gdpr-obfuscator-a4d1862161cf727447900f937c73ef77302a5d51.tar.gz gdpr-obfuscator-a4d1862161cf727447900f937c73ef77302a5d51.zip | |
change help message for CLI --s3/--local choice
| -rw-r--r-- | cli.py | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -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 |
