Skip to content
Snippets Groups Projects
Commit 3a7164ad authored by Piotr Maślanka's avatar Piotr Maślanka
Browse files

fix imports

parent 92a284e7
No related branches found
No related tags found
No related merge requests found
......@@ -15,6 +15,13 @@ If you are simultaneously using @typed and @coerce, use them in following order:
from .basics import *
from .argparse import *
from .core_typecheck import *
from .decorators import *
from .decorators import __all__ as __all_decorators__
from .argparse import __all__ as __all_argparse__
from .basics import __all__ as __all_basics__
__all__ = __all_decorators__ + \
__all_argparse__ + \
filter(lambda p: not p.startswith(_), __all_basics__)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment