Skip to content

Commit a47ecb8

Browse files
committed
Fix another issue caused by the rebase
1 parent dbd5d67 commit a47ecb8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mypy/server/subexpr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ def visit_type_application(self, e: TypeApplication) -> None:
118118

119119
def visit_lambda_expr(self, e: LambdaExpr) -> None:
120120
self.add(e)
121-
super().visit_func_expr(e)
121+
super().visit_lambda_expr(e)
122122

123123
def visit_star_expr(self, e: StarExpr) -> None:
124124
self.add(e)

0 commit comments

Comments
 (0)