Reorganize files
This commit is contained in:
parent
130da242cc
commit
7c89ada5f0
8 changed files with 5 additions and 19 deletions
14
cheuph/__init__.py
Normal file
14
cheuph/__init__.py
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
from typing import List
|
||||
|
||||
from .element import *
|
||||
from .exceptions import *
|
||||
from .markup import *
|
||||
from .tree_display import *
|
||||
from .tree_list import *
|
||||
|
||||
__all__: List[str] = []
|
||||
__all__ += element.__all__
|
||||
__all__ += exceptions.__all__
|
||||
__all__ += markup.__all__
|
||||
__all__ += tree_display.__all__
|
||||
__all__ += tree_list.__all__
|
||||
Loading…
Add table
Add a link
Reference in a new issue