Skip to content

Commit c4f2c85

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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pylint/checkers/typecheck.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1453,9 +1453,9 @@ 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)
14581457
self._check_not_callable(node, called)
1458+
14591459
try:
14601460
called, implicit_args, callable_name = _determine_callable(called)
14611461
except ValueError:

0 commit comments

Comments
 (0)