Move config to main package
This commit is contained in:
parent
4dfd31e5fc
commit
5cfdb8f8e2
2 changed files with 2 additions and 0 deletions
|
|
@ -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__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue