mirror of
https://github.com/zulip/zulip.git
synced 2025-11-11 01:16:19 +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
@@ -19,7 +19,7 @@ class Command(BaseCommand):
|
||||
help="queue to process")
|
||||
parser.add_argument('--worker_num', metavar='<worker number>', type=int, nargs='?', default=0,
|
||||
help="worker label")
|
||||
parser.add_argument('--all', dest="all", action="store_true", default=False,
|
||||
parser.add_argument('--all', action="store_true", default=False,
|
||||
help="run all queues")
|
||||
parser.add_argument('--multi_threaded', nargs='+',
|
||||
metavar='<list of queue name>',
|
||||
|
||||
Reference in New Issue
Block a user