From bd8b1029b77be8dff33b1e63c0d2b7f7005ad3cf Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Thu, 6 Feb 2014 13:40:28 +0100 Subject: [PATCH] run_checks: Ignore too-many-locals for pylint. --- run_checks.py | 1 + 1 file changed, 1 insertion(+) diff --git a/run_checks.py b/run_checks.py index c8bae2200..b5de3da87 100644 --- a/run_checks.py +++ b/run_checks.py @@ -89,6 +89,7 @@ pylint_disable = [ 'abstract-class-little-used', # False-positives 'bad-builtin', # map/filter can be nicer than comprehensions 'too-many-arguments', + 'too-many-locals', ] flake8_disable = [