From 5f8084cfa046b937c6039a1194f935cae82438fb Mon Sep 17 00:00:00 2001 From: Claudiu Popa Date: Wed, 25 Sep 2019 18:13:50 +0200 Subject: [PATCH] Disable error for complex function --- pylint/checkers/variables.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pylint/checkers/variables.py b/pylint/checkers/variables.py index f31df0d38a..bc53fb9f50 100644 --- a/pylint/checkers/variables.py +++ b/pylint/checkers/variables.py @@ -1245,6 +1245,7 @@ def _is_variable_violation( base_scope_type, recursive_klass, ): + # pylint: disable=too-many-nested-blocks # node: Node to check for violation # name: name of node to check violation for # frame: Scope of statement of node