INNER CODE UNIT · Python
__init__
cunarist/solie · package/solie/window/main.py:72
def __init__(self, close_event: Event, config: SolieConfig) -> None:
"""Initialize main window."""
super().__init__()
self._close_event = close_event
self.config = config
self.datapath: Path
self.data_settings: DataSettings
self.last_interaction = datetime.now(UTC)
self._splash_screen: SplashScreen
self.price_labels: dict[str, QLabel] = {}
self.should_confirm_closing = False
self._is_closing = False
@override