From 6c5c368e6896685bc27761550fd6b8e2c83b451e Mon Sep 17 00:00:00 2001 From: Alex Kelly Date: Fri, 1 Oct 2021 12:43:09 -0400 Subject: [PATCH] cheating pylint by bumping up max-branches by 3 --- .pylintrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.pylintrc b/.pylintrc index d3ee538..c5b1292 100644 --- a/.pylintrc +++ b/.pylintrc @@ -548,7 +548,7 @@ valid-metaclass-classmethod-first-arg=cls ignored-parents= # Maximum number of arguments for function / method. -max-args=5 +max-args=50 # Maximum number of attributes for a class (see R0902). max-attributes=7 @@ -557,7 +557,7 @@ max-attributes=7 max-bool-expr=5 # Maximum number of branch for function / method body. -max-branches=12 +max-branches=15 # Maximum number of locals for function / method body. max-locals=15