from __future__ import annotations import sys from app.config import AppConfig from app.main_window import run_app def main() -> None: app_config = AppConfig() sys.exit(run_app(app_config))