mirror of
https://github.com/zulip/zulip.git
synced 2025-11-02 04:53:36 +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
@@ -12,7 +12,7 @@ from tools.lib.test_script import assert_provisioning_status_ok
|
||||
|
||||
def run() -> None:
|
||||
parser = argparse.ArgumentParser()
|
||||
parser.add_argument('--force', default=False,
|
||||
parser.add_argument('--force',
|
||||
action="store_true",
|
||||
help='Run tests despite possible problems.')
|
||||
options = parser.parse_args()
|
||||
|
||||
Reference in New Issue
Block a user