diff --git a/pylint/checkers/typecheck.py b/pylint/checkers/typecheck.py index 472f7d417b..a288f49349 100644 --- a/pylint/checkers/typecheck.py +++ b/pylint/checkers/typecheck.py @@ -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,