mirror of
https://github.com/zulip/zulip.git
synced 2025-11-18 21:48:30 +00:00
python: Remove redundant dest for argparse arguments.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
committed by
Tim Abbott
parent
4d583e3d41
commit
a5dbab8fb0
@@ -15,17 +15,14 @@ class Command(BaseCommand):
|
||||
|
||||
def add_arguments(self, parser: ArgumentParser) -> None:
|
||||
parser.add_argument('--path',
|
||||
dest='path',
|
||||
action="store",
|
||||
default=None,
|
||||
help='Path to find messages.json archives')
|
||||
parser.add_argument('--thread',
|
||||
dest='thread',
|
||||
action="store",
|
||||
default=None,
|
||||
help='Thread ID')
|
||||
parser.add_argument('--consent-message-id',
|
||||
dest="consent_message_id",
|
||||
action="store",
|
||||
default=None,
|
||||
type=int,
|
||||
|
||||
Reference in New Issue
Block a user