From 7af542bb542e98d61328b351b24c3dd4e8352ff6 Mon Sep 17 00:00:00 2001 From: Eklavya Sharma Date: Wed, 13 Jul 2016 14:19:34 +0530 Subject: [PATCH] Add lister.py to mypy exclude list. mypy is currently broken and gives false errors on devel/lister.py. See https://github.com/python/typeshed/pull/348. --- devel/run_mypy.py | 1 + 1 file changed, 1 insertion(+) diff --git a/devel/run_mypy.py b/devel/run_mypy.py index 568666b..14524e1 100755 --- a/devel/run_mypy.py +++ b/devel/run_mypy.py @@ -15,6 +15,7 @@ exclude = """ lib/mypy_dummy.py +devel/lister.py main/migrations/ """.split() # type: List[str]