python: Remove redundant dest for argparse arguments.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg
2020-09-01 19:49:02 -07:00
committed by Tim Abbott
parent 4d583e3d41
commit a5dbab8fb0
60 changed files with 53 additions and 127 deletions

View File

@@ -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: