From a9dc71f6ad1e531691c9dfbe9ad88b6c55df5891 Mon Sep 17 00:00:00 2001 From: a-kenji Date: Sun, 10 Nov 2024 15:37:41 +0100 Subject: [PATCH] pkgs/cli: Apply naming standards to help strings in `clan machines update` --- pkgs/clan-cli/clan_cli/machines/update.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/clan-cli/clan_cli/machines/update.py b/pkgs/clan-cli/clan_cli/machines/update.py index dd6d71de2..e24592b84 100644 --- a/pkgs/clan-cli/clan_cli/machines/update.py +++ b/pkgs/clan-cli/clan_cli/machines/update.py @@ -204,7 +204,7 @@ def register_update_parser(parser: argparse.ArgumentParser) -> None: nargs="*", default=[], metavar="MACHINE", - help="machine to update. If no machine is specified, all machines will be updated.", + help="Machine to update. If no machine is specified, all machines will be updated.", ) add_dynamic_completer(machines_parser, complete_machines) @@ -212,13 +212,13 @@ def register_update_parser(parser: argparse.ArgumentParser) -> None: "--host-key-check", choices=["strict", "ask", "tofu", "none"], default="ask", - help="Host key (.ssh/known_hosts) check mode", + help="Host key (.ssh/known_hosts) check mode.", ) parser.add_argument( "--target-host", type=str, - help="address of the machine to update, in the format of user@host:1234", + help="Address of the machine to update, in the format of user@host:1234.", ) parser.add_argument( "--darwin",