Skip to content

Commit 7be65e3

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent a1059c3 commit 7be65e3

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

mypy/checkexpr.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -587,12 +587,10 @@ def visit_call_expr_inner(self, e: CallExpr, allow_none_return: bool = False) ->
587587
)
588588
checked_args = []
589589
for arg in e.args:
590-
checked_args.append(self.accept(arg))
591-
590+
checked_args.append(self.accept(arg))
592591

593592
arg_types = [
594-
join.join_type_list([checked_args[j] for j in formal_to_actual[i]]
595-
)
593+
join.join_type_list([checked_args[j] for j in formal_to_actual[i]])
596594
for i in range(len(e.callee.arg_kinds))
597595
]
598596
type_context = CallableType(

0 commit comments

Comments
 (0)