Skip to content

Commit 662c9e4

Browse files
committed
Disable too-many-locals for complex function
1 parent 75ae5cc commit 662c9e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pylint/checkers/typecheck.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1124,7 +1124,7 @@ def _check_argument_order(self, node, call_site, called, called_param_names):
11241124
if calling_parg_names != called_param_names[: len(calling_parg_names)]:
11251125
self.add_message("arguments-out-of-order", node=node, args=())
11261126

1127-
# pylint: disable=too-many-branches
1127+
# pylint: disable=too-many-branches,too-many-locals
11281128
@check_messages(*(list(MSGS.keys())))
11291129
def visit_call(self, node):
11301130
"""check that called functions/methods are inferred to callable objects,

0 commit comments

Comments
 (0)