Skip to content

Commit

Permalink
fix imports order
Browse files Browse the repository at this point in the history
  • Loading branch information
PrettyWood committed Dec 20, 2021
1 parent bcc2b29 commit d23dff8
Showing 1 changed file with 25 additions and 7 deletions.
32 changes: 25 additions & 7 deletions typingx/__init__.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,28 @@
# flake8: noqa
from typing import *
__version__ = "0.5.3"

from typing import (
Any,
Callable,
Collection,
Dict,
FrozenSet,
Generic,
List,
Mapping,
NewType,
Optional,
Sequence,
Set,
Tuple,
Type,
TypeVar,
Union,
)

from .func_check import func_check
from .main import Constraints, isinstancex, issubclassx
from .types import Listx, Tuplex
from .typing_compat import ( # type: ignore[misc]
from .typing_compat import (
Annotated,
Literal,
NoneType,
Expand Down Expand Up @@ -33,22 +51,22 @@
"Dict",
"FrozenSet",
"Generic",
"Literal",
"List",
"Listx",
"Literal",
"Mapping",
"Optional",
"NewType",
"NoneType",
"Union",
"Optional",
"Set",
"Sequence",
"Tuple",
"Tuplex",
"Type",
"TypedDict",
"TypeLike",
"TypeVar",
"TypedDict",
"Union",
"get_args",
"get_origin",
"get_type_hints",
Expand Down

0 comments on commit d23dff8

Please sign in to comment.