Skip to content

Commit 565a3da

Browse files
author
hauntsaninja
committed
fix imports
1 parent 35305be commit 565a3da

11 files changed

+11
-11
lines changed

Diff for: mypy/applytype.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from mypy.expandtype import expand_type
66
from mypy.types import (
77
Type, TypeVarId, TypeVarType, CallableType, AnyType, PartialType, get_proper_types,
8-
TypeVarType, TypeVarLikeDef, ProperType
8+
TypeVarLikeDef, ProperType
99
)
1010
from mypy.nodes import Context
1111

Diff for: mypy/checker.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
from mypy.types import (
3333
Type, AnyType, CallableType, FunctionLike, Overloaded, TupleType, TypedDictType,
3434
Instance, NoneType, strip_type, TypeType, TypeOfAny,
35-
UnionType, TypeVarId, TypeVarType, PartialType, DeletedType, UninhabitedType, TypeVarType,
35+
UnionType, TypeVarId, TypeVarType, PartialType, DeletedType, UninhabitedType,
3636
is_named_instance, union_items, TypeQuery, LiteralType,
3737
is_optional, remove_optional, TypeTranslator, StarType, get_proper_type, ProperType,
3838
get_proper_types, is_literal_type, TypeAliasType, TypeGuardType)

Diff for: mypy/checkexpr.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
)
1616
from mypy.types import (
1717
Type, AnyType, CallableType, Overloaded, NoneType, TypeVarType, TypeGuardType,
18-
TupleType, TypedDictType, Instance, TypeVarType, ErasedType, UnionType,
18+
TupleType, TypedDictType, Instance, ErasedType, UnionType,
1919
PartialType, DeletedType, UninhabitedType, TypeType, TypeOfAny, LiteralType, LiteralValue,
2020
is_named_instance, FunctionLike,
2121
StarType, is_optional, remove_optional, is_generic_instance, get_proper_type, ProperType,

Diff for: mypy/fixup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from mypy.types import (
1212
CallableType, Instance, Overloaded, TupleType, TypedDictType,
1313
TypeVarType, UnboundType, UnionType, TypeVisitor, LiteralType,
14-
TypeType, NOT_READY, TypeAliasType, AnyType, TypeOfAny, TypeVarType
14+
TypeType, NOT_READY, TypeAliasType, AnyType, TypeOfAny
1515
)
1616
from mypy.visitor import NodeVisitor
1717
from mypy.lookup import lookup_fully_qualified

Diff for: mypy/plugins/attrs.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
deserialize_and_fixup_type
2222
)
2323
from mypy.types import (
24-
Type, AnyType, TypeOfAny, CallableType, NoneType, TypeVarType, TypeVarType,
24+
Type, AnyType, TypeOfAny, CallableType, NoneType, TypeVarType,
2525
Overloaded, UnionType, FunctionLike, get_proper_type
2626
)
2727
from mypy.typeops import make_simplified_union, map_type_from_supertype

Diff for: mypy/plugins/dataclasses.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
add_method, _get_decorator_bool_argument, deserialize_and_fixup_type,
1414
)
1515
from mypy.typeops import map_type_from_supertype
16-
from mypy.types import Type, Instance, NoneType, TypeVarType, TypeVarType, get_proper_type
16+
from mypy.types import Type, Instance, NoneType, TypeVarType, get_proper_type
1717
from mypy.server.trigger import make_wildcard_trigger
1818

1919
# The set of decorators that generate dataclasses.

Diff for: mypy/semanal_namedtuple.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from typing_extensions import Final
99

1010
from mypy.types import (
11-
Type, TupleType, AnyType, TypeOfAny, TypeVarType, CallableType, TypeType, TypeVarType,
11+
Type, TupleType, AnyType, TypeOfAny, CallableType, TypeType, TypeVarType,
1212
UnboundType,
1313
)
1414
from mypy.semanal_shared import (

Diff for: mypy/server/astmerge.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
from mypy.traverser import TraverserVisitor
5858
from mypy.types import (
5959
Type, SyntheticTypeVisitor, Instance, AnyType, NoneType, CallableType, ErasedType, DeletedType,
60-
TupleType, TypeType, TypeVarType, TypedDictType, UnboundType, UninhabitedType, UnionType,
60+
TupleType, TypeType, TypedDictType, UnboundType, UninhabitedType, UnionType,
6161
Overloaded, TypeVarType, TypeList, CallableArgument, EllipsisType, StarType, LiteralType,
6262
RawExpressionType, PartialType, PlaceholderType, TypeAliasType
6363
)

Diff for: mypy/test/typefixture.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from typing import List, Optional, Tuple
77

88
from mypy.types import (
9-
Type, TypeVarType, AnyType, NoneType, Instance, CallableType, TypeVarType, TypeType,
9+
Type, AnyType, NoneType, Instance, CallableType, TypeVarType, TypeType,
1010
UninhabitedType, TypeOfAny, TypeAliasType, UnionType
1111
)
1212
from mypy.nodes import (

Diff for: mypy/typeanal.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
from mypy.options import Options
1414
from mypy.types import (
1515
Type, UnboundType, TypeVarType, TupleType, TypedDictType, UnionType, Instance, AnyType,
16-
CallableType, NoneType, ErasedType, DeletedType, TypeList, TypeVarType, SyntheticTypeVisitor,
16+
CallableType, NoneType, ErasedType, DeletedType, TypeList, SyntheticTypeVisitor,
1717
StarType, PartialType, EllipsisType, UninhabitedType, TypeType,
1818
CallableArgument, TypeQuery, union_items, TypeOfAny, LiteralType, RawExpressionType,
1919
PlaceholderType, Overloaded, get_proper_type, TypeAliasType, TypeVarLikeDef, ParamSpecDef

Diff for: mypy/typeops.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
import sys
1111

1212
from mypy.types import (
13-
TupleType, Instance, FunctionLike, Type, CallableType, TypeVarType, TypeVarLikeDef, Overloaded,
13+
TupleType, Instance, FunctionLike, Type, CallableType, TypeVarLikeDef, Overloaded,
1414
TypeVarType, UninhabitedType, FormalArgument, UnionType, NoneType, TypedDictType,
1515
AnyType, TypeOfAny, TypeType, ProperType, LiteralType, get_proper_type, get_proper_types,
1616
copy_type, TypeAliasType, TypeQuery

0 commit comments

Comments
 (0)