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

fix imports

parent 95a3c13b
No related branches found
No related tags found
No related merge requests found
......@@ -21,7 +21,5 @@ 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__)
__all__ = filter(lambda p: not p.startswith('_'),
__all_decorators__ + __all_argparse__ + __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