mirror of
https://github.com/zulip/zulip.git
synced 2025-11-02 21:13:36 +00:00
python: Elide action="store" for argparse arguments.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
committed by
Alex Vandiver
parent
1f2ac1962f
commit
fbfd4b399d
@@ -29,8 +29,7 @@ parser = argparse.ArgumentParser(usage=usage)
|
||||
parser.add_argument('--min-threshold',
|
||||
dest='min_count',
|
||||
type=int,
|
||||
default=1,
|
||||
action='store')
|
||||
default=1)
|
||||
|
||||
options = parser.parse_args()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user