mirror of
https://github.com/zulip/zulip.git
synced 2025-11-01 20:44:04 +00:00
python: Elide default for store_{true,false} argparse arguments.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
committed by
Alex Vandiver
parent
d9431a5e66
commit
b4597a8ca8
@@ -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", default=False)
|
||||
parser.add_argument('--force', action="store_true")
|
||||
args = parser.parse_args()
|
||||
|
||||
if not args.force:
|
||||
|
||||
Reference in New Issue
Block a user