From a4d1862161cf727447900f937c73ef77302a5d51 Mon Sep 17 00:00:00 2001 From: Alex Schofield Date: Wed, 19 Feb 2025 02:32:09 +0000 Subject: change help message for CLI --s3/--local choice --- cli.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'cli.py') 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 -- cgit v1.2.3