cheating pylint by bumping up max-branches by 3

This commit is contained in:
Alex Kelly 2021-10-01 12:43:09 -04:00
parent 03cadb90cf
commit 6c5c368e68

View file

@ -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