mirror of
https://github.com/zulip/zulip.git
synced 2025-11-14 10:57:58 +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
@@ -19,7 +19,7 @@ class Command(ZulipBaseCommand):
|
||||
with (for example) any bots owned by the user."""
|
||||
|
||||
def add_arguments(self, parser: ArgumentParser) -> None:
|
||||
parser.add_argument('email', metavar='<email>', type=str,
|
||||
parser.add_argument('email', metavar='<email>',
|
||||
help="email of user to export")
|
||||
parser.add_argument('--output',
|
||||
dest='output_dir',
|
||||
|
||||
Reference in New Issue
Block a user