mirror of
https://github.com/zulip/zulip.git
synced 2025-11-10 17:07:07 +00:00
python: Elide type=str from argparse arguments.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
committed by
Alex Vandiver
parent
fbfd4b399d
commit
a50fae89e2
@@ -16,7 +16,7 @@ class Command(ZulipBaseCommand):
|
||||
parser.add_argument('--force',
|
||||
action="store_true",
|
||||
help='Override that the domain is restricted to external users.')
|
||||
parser.add_argument('emails', metavar='<email>', type=str, nargs='*',
|
||||
parser.add_argument('emails', metavar='<email>', nargs='*',
|
||||
help='email of users to generate an activation link for')
|
||||
self.add_realm_args(parser, True)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user