logging and scrollable form

This commit is contained in:
Landon Wark
2023-01-24 15:22:15 -06:00
parent 7a53cfd9a1
commit f53d420d56
9 changed files with 129 additions and 121 deletions

View File

@@ -6,12 +6,11 @@ if getattr(sys, 'frozen', False):
else :
pass
from configure import get_config, create_database_session, setup_logger
logger = setup_logger(verbosity=3)
ctx = get_config(None)
from PyQt6.QtWidgets import QApplication
from frontend import App
logger = setup_logger(verbose=True)
ctx["database_session"] = create_database_session(Path(ctx['database']))
if __name__ == '__main__':