From 0b3989eaaa081d6d0264ad5bed9c9075b26b9186 Mon Sep 17 00:00:00 2001 From: Carl Drews Date: Fri, 12 Jul 2024 18:44:16 -0600 Subject: [PATCH] Add key=value required parameter to argparse help. --- src/acom_music_box/music_box_main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/acom_music_box/music_box_main.py b/src/acom_music_box/music_box_main.py index 1c5bd6a7..3a3c6f08 100644 --- a/src/acom_music_box/music_box_main.py +++ b/src/acom_music_box/music_box_main.py @@ -31,7 +31,7 @@ def getArgsDictionary(argPairs): 'key_value_pairs', nargs='+', # This means one or more arguments are expected action=KeyValueAction, - help='Arguments in key=value format' + help="Arguments in key=value format. Example: configFile=my_config.json" ) argDict = vars(parser.parse_args(argPairs)) # return dictionary