Clean up and re-add attributed text widgets

This commit is contained in:
Joscha 2019-06-07 04:49:45 +00:00
parent 5e10fcecac
commit ba2f64762f
3 changed files with 11 additions and 20 deletions

View file

@ -1,6 +1,8 @@
from typing import List
from .attributed_lines import *
from .attributed_lines_widget import *
from .attributed_text_widget import *
from .cursor_rendering import *
from .element import *
from .element_supply import *
@ -10,6 +12,8 @@ from .rendered_element_cache import *
__all__: List[str] = []
__all__ += attributed_lines.__all__
__all__ += attributed_lines_widget.__all__
__all__ += attributed_text_widget.__all__
__all__ += cursor_rendering.__all__
__all__ += element.__all__
__all__ += element_supply.__all__