From 62e5c66867823b53e3c3818dc7242995de6e290c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Thu, 7 Sep 2023 13:06:31 +0200 Subject: [PATCH] secrets cli: hint that group/user/machine flags can be repeated --- pkgs/clan-cli/clan_cli/secrets/secrets.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/clan-cli/clan_cli/secrets/secrets.py b/pkgs/clan-cli/clan_cli/secrets/secrets.py index ae1206e..586a862 100644 --- a/pkgs/clan-cli/clan_cli/secrets/secrets.py +++ b/pkgs/clan-cli/clan_cli/secrets/secrets.py @@ -242,21 +242,21 @@ def register_secrets_parser(subparser: argparse._SubParsersAction) -> None: type=str, action="append", default=[], - help="the group to import the secrets to", + help="the group to import the secrets to (can be repeated)", ) parser_set.add_argument( "--machine", type=str, action="append", default=[], - help="the machine to import the secrets to", + help="the machine to import the secrets to (can be repeated)", ) parser_set.add_argument( "--user", type=str, action="append", default=[], - help="the user to import the secrets to", + help="the user to import the secrets to (can be repeated)", ) parser_set.set_defaults(func=set_command)