Create config system

This commit is contained in:
Joscha 2019-06-20 14:50:22 +00:00
parent 3c684070c5
commit a39dad7946
2 changed files with 132 additions and 118 deletions

View file

@ -3,6 +3,7 @@ from typing import List
from .attributed_lines import *
from .attributed_lines_widget import *
from .attributed_text_widget import *
from .config import *
from .cursor_rendering import *
from .cursor_tree_widget import *
from .element import *
@ -14,9 +15,11 @@ from .utils import *
__all__: List[str] = []
__all__ += attributed_lines.__all__
__all__ += attributed_lines_widget.__all__
__all__ += attributed_text_widget.__all__
__all__ += config.__all__
__all__ += cursor_rendering.__all__
__all__ += cursor_tree_widget.__all__
__all__ += element.__all__