pylint-errors

R0914 (too-many-locals)

:x: Problematic code:

def foo():
    # Maximum number of locals for function / method body (by default 15)

:heavy_check_mark: Correct code:

# split up functions/methods to smaller ones

Rationale:

Used when a function or method has too many local variables.