Move config to main package

This commit is contained in:
Joscha 2019-05-16 11:11:32 +00:00
parent 4dfd31e5fc
commit 5cfdb8f8e2
2 changed files with 2 additions and 0 deletions

View file

@ -1,5 +1,6 @@
from typing import List from typing import List
from .config import *
from .element import * from .element import *
from .element_supply import * from .element_supply import *
from .exceptions import * from .exceptions import *
@ -9,6 +10,7 @@ from .tree_list import *
from .widgets import * from .widgets import *
__all__: List[str] = [] __all__: List[str] = []
__all__ += config.__all__
__all__ += element.__all__ __all__ += element.__all__
__all__ += element_supply.__all__ __all__ += element_supply.__all__
__all__ += exceptions.__all__ __all__ += exceptions.__all__