restructured imports from modules, created imports in __init__.py

This commit is contained in:
Tom Schimansky
2022-11-29 19:06:33 +01:00
parent 1254a39161
commit 03249110f3
38 changed files with 226 additions and 186 deletions

View File

@@ -1,9 +1,9 @@
from typing import Union, Tuple, Optional
from .widgets.ctk_label import CTkLabel
from .widgets.ctk_entry import CTkEntry
from .widgets.ctk_button import CTkButton
from .widgets.theme.theme_manager import ThemeManager
from .widgets import CTkLabel
from .widgets import CTkEntry
from .widgets import CTkButton
from .widgets.theme import ThemeManager
from .ctk_toplevel import CTkToplevel