Skip to content

Commit

Permalink
Fix another issue caused by the rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
JukkaL committed Apr 3, 2017
1 parent dbd5d67 commit a47ecb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mypy/server/subexpr.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def visit_type_application(self, e: TypeApplication) -> None:

def visit_lambda_expr(self, e: LambdaExpr) -> None:
self.add(e)
super().visit_func_expr(e)
super().visit_lambda_expr(e)

def visit_star_expr(self, e: StarExpr) -> None:
self.add(e)
Expand Down

0 comments on commit a47ecb8

Please sign in to comment.