python: Elide default=None for argparse arguments.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg
2020-09-02 12:02:34 -07:00
committed by Alex Vandiver
parent 3c5b39da9c
commit 1f2ac1962f
13 changed files with 9 additions and 16 deletions

View File

@@ -49,7 +49,7 @@ parser.add_argument('--minify',
help='Minifies assets for testing in dev')
parser.add_argument('--interface',
action='store',
default=None, help='Set the IP or hostname for the proxy to listen on')
help='Set the IP or hostname for the proxy to listen on')
parser.add_argument('--no-clear-memcached',
action='store_false', dest='clear_memcached',
help='Do not clear memcached')