bowl/cheuph/widgets/__init__.py

8 lines
204 B
Python

from typing import List
from .attributed_text_widget import *
from .tree_display_widget import *
__all__: List[str] = []
__all__ += attributed_text_widget.__all__
__all__ += tree_display_widget.__all__