|
12 | 12 | from mypy.messages import MessageBuilder, quote_type_string, format_type_bare
|
13 | 13 | from mypy.options import Options
|
14 | 14 | from mypy.types import (
|
15 |
| - Type, UnboundType, TypeVarType, TupleType, TypedDictType, UnionType, Instance, AnyType, |
| 15 | + Type, UnboundType, TupleType, TypedDictType, UnionType, Instance, AnyType, |
16 | 16 | CallableType, NoneType, ErasedType, DeletedType, TypeList, TypeVarType, SyntheticTypeVisitor,
|
17 |
| - StarType, PartialType, EllipsisType, UninhabitedType, TypeType, TypeVarLikeType, |
18 |
| - CallableArgument, TypeQuery, union_items, TypeOfAny, LiteralType, RawExpressionType, |
19 |
| - PlaceholderType, Overloaded, get_proper_type, TypeAliasType, TypeVarLikeType, ParamSpecType |
| 17 | + StarType, PartialType, EllipsisType, UninhabitedType, TypeType, CallableArgument, |
| 18 | + TypeQuery, union_items, TypeOfAny, LiteralType, RawExpressionType, |
| 19 | + PlaceholderType, Overloaded, get_proper_type, TypeAliasType, |
| 20 | + TypeVarLikeType, ParamSpecType |
20 | 21 | )
|
21 | 22 |
|
22 | 23 | from mypy.nodes import (
|
|
0 commit comments