Skip to content

Commit

Permalink
add visit_star_type() to TypeAnalyserPass3
Browse files Browse the repository at this point in the history
Part of python#730.
  • Loading branch information
JamesGuthrie committed Aug 24, 2015
1 parent 5502b38 commit d0bb829
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions mypy/typeanal.py
Original file line number Diff line number Diff line change
Expand Up @@ -333,3 +333,6 @@ def visit_type_list(self, t: TypeList) -> None:

def visit_type_var(self, t: TypeVarType) -> None:
pass

def visit_star_type(self, t: StarType) -> None:
pass

0 comments on commit d0bb829

Please sign in to comment.