Skip to content

Commit

Permalink
Disable too-many-locals for complex function
Browse files Browse the repository at this point in the history
  • Loading branch information
PCManticore committed Oct 17, 2019
1 parent 75ae5cc commit 662c9e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pylint/checkers/typecheck.py
Original file line number Diff line number Diff line change
Expand Up @@ -1124,7 +1124,7 @@ def _check_argument_order(self, node, call_site, called, called_param_names):
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,
Expand Down

0 comments on commit 662c9e4

Please sign in to comment.