From 57d8c0a0b17e7a9590d3dc51e78405313a7585ff Mon Sep 17 00:00:00 2001 From: Yuya Unno Date: Wed, 19 Oct 2016 23:46:57 +0900 Subject: [PATCH] Fix default value of import --- jqp/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jqp/__init__.py b/jqp/__init__.py index 1e20c00..19e1ea8 100644 --- a/jqp/__init__.py +++ b/jqp/__init__.py @@ -54,7 +54,7 @@ def main(): '--version', action='version', version='jqp %s' % __version__, help='show version and exit') parser.add_argument( - '--import', action='append', + '--import', action='append', default=[], help='modules to import') parser.add_argument( '--sort-keys', '-S', action='store_true',