Add AttributedTextWidget

This commit is contained in:
Joscha 2019-05-14 16:15:39 +00:00
parent f222b6a390
commit a80f4c3788
3 changed files with 43 additions and 0 deletions

View file

@ -6,6 +6,7 @@ from .exceptions import *
from .markup import *
from .tree_display import *
from .tree_list import *
from .widgets import *
__all__: List[str] = []
__all__ += element.__all__
@ -14,3 +15,4 @@ __all__ += exceptions.__all__
__all__ += markup.__all__
__all__ += tree_display.__all__
__all__ += tree_list.__all__
__all__ += widgets.__all__