aboutsummaryrefslogtreecommitdiffstats
path: root/cli.py
diff options
context:
space:
mode:
Diffstat (limited to 'cli.py')
-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