Skip to content

Commit

Permalink
Merge pull request #605 from sobelk/patch-1
Browse files Browse the repository at this point in the history
Clarify help text for `add --who` argument
  • Loading branch information
dbarnett authored Aug 23, 2024
2 parents dc8dfd1 + 379a5b6 commit 8184417
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion gcalcli/argparsers.py
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,8 @@ def get_argument_parser():
)
add.add_argument('--title', default=None, type=str, help='Event title')
add.add_argument(
'--who', default=[], type=str, action='append', help='Event participants')
'--who', default=[], type=str, action='append',
help='Event participant (may be provided multiple times)')
add.add_argument('--where', default=None, type=str, help='Event location')
add.add_argument('--when', default=None, type=str, help='Event time')
add.add_argument(
Expand Down

0 comments on commit 8184417

Please sign in to comment.