From 5f22e3e0444c4c7d8db3fbaa46f289a4851f8222 Mon Sep 17 00:00:00 2001 From: Nick Drozd Date: Tue, 2 Jan 2018 19:51:37 -0600 Subject: [PATCH] Set max-locals to 25 --- pylintrc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pylintrc b/pylintrc index d90bc95e3..d5d31646f 100644 --- a/pylintrc +++ b/pylintrc @@ -62,7 +62,6 @@ disable= no-member, redefined-builtin, protected-access, - too-many-locals, too-many-arguments, too-many-statements, too-few-public-methods, @@ -313,7 +312,7 @@ max-args=5 ignored-argument-names=_.* # Maximum number of locals for function / method body -max-locals=15 +max-locals=25 # Maximum number of return / yield for function / method body max-returns=11