bascially ready to ship

This commit is contained in:
Joe Fleming
2026-03-07 17:13:36 -07:00
parent f3bb38aea1
commit 0941b228ef
4 changed files with 92 additions and 48 deletions

9
app.py
View File

@@ -381,8 +381,13 @@ class SessionMoverApp(App):
def on_mount(self) -> None:
"""Initialize app."""
self.db.connect()
self.db.load_reference_data()
try:
self.db.connect()
self.db.load_reference_data()
except FileNotFoundError as e:
self.notify(str(e), severity="error", timeout=10)
self.set_timer(1, self.exit)
return
self._project_ids: List[str] = []
self.refresh_project_list()