mirror of
https://github.com/zulip/zulip.git
synced 2025-11-03 05:23:35 +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
@@ -44,7 +44,7 @@ def get_next_page_url(link_header: str) -> Optional[str]:
|
||||
|
||||
def check_issue_labels() -> None:
|
||||
parser = argparse.ArgumentParser()
|
||||
parser.add_argument('--force', action="store_true", dest="force", default=False)
|
||||
parser.add_argument('--force', action="store_true", default=False)
|
||||
args = parser.parse_args()
|
||||
|
||||
if not args.force:
|
||||
|
||||
Reference in New Issue
Block a user