Skip to content

Commit

Permalink
Update parser.py help messages
Browse files Browse the repository at this point in the history
  • Loading branch information
tcompa authored Nov 26, 2024
1 parent d821d38 commit 8afaff6
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions fractal_client/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -916,8 +916,7 @@
user_set_groups_parser = user_subparsers.add_parser(
"set-groups",
description=(
"Associates an existing user with the indicated groups, "
"and removes them from any groups not indicated."
"Reset user-group membership for an existing user."
),
allow_abbrev=False,
)
Expand All @@ -926,7 +925,10 @@
)
user_set_groups_parser.add_argument(
"group_ids",
help="List of the IDs of groups we want the user to be member.",
help=(
"List of the IDs of groups we want the user to be member. "
"WARNING: this list replaces the current group memberships.
),
type=int,
nargs="+",
)
Expand Down

0 comments on commit 8afaff6

Please sign in to comment.