Lay out new client structure
This commit is contained in:
parent
6c4bfe2752
commit
7da4bf36d5
21 changed files with 174 additions and 1137 deletions
|
|
@ -1,20 +1,29 @@
|
|||
from typing import List
|
||||
|
||||
from .attributed_lines import *
|
||||
from .attributed_lines_widget import *
|
||||
from .attributed_text_widget import *
|
||||
from .config import *
|
||||
from .element import *
|
||||
from .element_supply import *
|
||||
from .exceptions import *
|
||||
from .markup import *
|
||||
from .tree_display import *
|
||||
from .tree_list import *
|
||||
from .widgets import *
|
||||
from .message import *
|
||||
from .message_cache import *
|
||||
from .message_editor_widget import *
|
||||
from .message_supply import *
|
||||
from .message_tree_widget import *
|
||||
from .user_list_widget import *
|
||||
|
||||
__all__: List[str] = []
|
||||
|
||||
__all__ += attributed_lines.__all__
|
||||
__all__ += attributed_lines_widget.__all__
|
||||
__all__ += attributed_text_widget.__all__
|
||||
__all__ += config.__all__
|
||||
__all__ += element.__all__
|
||||
__all__ += element_supply.__all__
|
||||
__all__ += exceptions.__all__
|
||||
__all__ += markup.__all__
|
||||
__all__ += tree_display.__all__
|
||||
__all__ += tree_list.__all__
|
||||
__all__ += widgets.__all__
|
||||
__all__ += message.__all__
|
||||
__all__ += message_cache.__all__
|
||||
__all__ += message_editor_widget.__all__
|
||||
__all__ += message_supply.__all__
|
||||
__all__ += message_tree_widget.__all__
|
||||
__all__ += user_list_widget.__all__
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue