Skip to content

Commit e29a7c8

Browse files
committed
Restore original spacing.
1 parent 0eaf22d commit e29a7c8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pylint/checkers/typecheck.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1453,9 +1453,10 @@ def visit_call(self, node: nodes.Call) -> None:
14531453
"""Check that called functions/methods are inferred to callable objects,
14541454
and that passed arguments match the parameters in the inferred function.
14551455
"""
1456-
14571456
called = safe_infer(node.func, compare_constructors=True)
1457+
14581458
self._check_not_callable(node, called)
1459+
14591460
try:
14601461
called, implicit_args, callable_name = _determine_callable(called)
14611462
except ValueError:

0 commit comments

Comments
 (0)