Add help text to rename command (#3442)

This commit is contained in:
Jesse Hills 2022-05-09 10:18:24 +12:00 committed by GitHub
parent 91895aa70c
commit 64fb39a653
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -776,7 +776,10 @@ def parse_args(argv):
"configuration", help="Your YAML configuration file(s).", nargs=1
)
parser_rename = subparsers.add_parser("rename")
parser_rename = subparsers.add_parser(
"rename",
help="Rename a device in YAML, compile the binary and upload it.",
)
parser_rename.add_argument(
"configuration", help="Your YAML configuration file.", nargs=1
)