python: Elide action="store" for argparse arguments.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg
2020-09-02 12:10:51 -07:00
committed by Alex Vandiver
parent 1f2ac1962f
commit fbfd4b399d
19 changed files with 7 additions and 30 deletions

View File

@@ -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()