From 8cbf4d2c50ad9aaba09dd77494e75321ec214ed8 Mon Sep 17 00:00:00 2001 From: James Guthrie Date: Mon, 24 Aug 2015 09:09:45 +0200 Subject: [PATCH] add visit_star_type to TypeAnalyserPass3 Part of #730. --- mypy/typeanal.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mypy/typeanal.py b/mypy/typeanal.py index 665978857f96e..350f7b9cc7e47 100644 --- a/mypy/typeanal.py +++ b/mypy/typeanal.py @@ -332,3 +332,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