summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2019-10-17 09:41:12 +0200
committerClaudiu Popa <pcmanticore@gmail.com>2019-10-17 09:41:12 +0200
commit57513ccefafc61b711d19f08c6de91acc5d4ec8f (patch)
tree77e7be337857d9c55a1f282779d49cee05089220
parentccb1d05636f18231809aead61f73ad9d2ae46458 (diff)
downloadpylint-git-57513ccefafc61b711d19f08c6de91acc5d4ec8f.tar.gz
Disable too-many-locals for complex function
-rw-r--r--pylint/checkers/typecheck.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/checkers/typecheck.py b/pylint/checkers/typecheck.py
index 472f7d417..a288f4934 100644
--- a/pylint/checkers/typecheck.py
+++ b/pylint/checkers/typecheck.py
@@ -1124,7 +1124,7 @@ accessed. Python regular expressions are accepted.",
if calling_parg_names != called_param_names[: len(calling_parg_names)]:
self.add_message("arguments-out-of-order", node=node, args=())
- # pylint: disable=too-many-branches
+ # pylint: disable=too-many-branches,too-many-locals
@check_messages(*(list(MSGS.keys())))
def visit_call(self, node):
"""check that called functions/methods are inferred to callable objects,