From 67ccb1b45044c3ea9d44f3e67df2c4f1be7dc821 Mon Sep 17 00:00:00 2001 From: Alvaro Caceres Date: Tue, 12 Jul 2016 18:46:09 -0500 Subject: [PATCH] revert unnecessary change to mypy_test from previous commit --- tests/mypy_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/mypy_test.py b/tests/mypy_test.py index b127aec18804..2d1374427599 100755 --- a/tests/mypy_test.py +++ b/tests/mypy_test.py @@ -22,7 +22,7 @@ parser.add_argument('-v', '--verbose', action='count', default=0, help="More output") parser.add_argument('-n', '--dry-run', action='store_true', help="Don't actually run mypy") parser.add_argument('-x', '--exclude', type=str, nargs='*', help="Exclude pattern") -parser.add_argument('-p', '--python-version', type=str, action='append', +parser.add_argument('-p', '--python-version', type=str, nargs='*', help="These versions only (major[.minor])") parser.add_argument('filter', type=str, nargs='*', help="Include pattern (default all)")