From 64fb39a653be8633942cce7733f8379b6b0550ca Mon Sep 17 00:00:00 2001 From: Jesse Hills <3060199+jesserockz@users.noreply.github.com> Date: Mon, 9 May 2022 10:18:24 +1200 Subject: [PATCH] Add help text to rename command (#3442) --- esphome/__main__.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/esphome/__main__.py b/esphome/__main__.py index 00770d6f05..80e8455465 100644 --- a/esphome/__main__.py +++ b/esphome/__main__.py @@ -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 )