mirror of
https://github.com/esphome/esphome.git
synced 2024-11-26 17:05:21 +01:00
Add help text to rename command (#3442)
This commit is contained in:
parent
91895aa70c
commit
64fb39a653
1 changed files with 4 additions and 1 deletions
|
@ -776,7 +776,10 @@ def parse_args(argv):
|
||||||
"configuration", help="Your YAML configuration file(s).", nargs=1
|
"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(
|
parser_rename.add_argument(
|
||||||
"configuration", help="Your YAML configuration file.", nargs=1
|
"configuration", help="Your YAML configuration file.", nargs=1
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue