fix: handle empty store

This commit is contained in:
aclist 2026-06-11 12:02:05 +09:00
parent 56da5717fa
commit 49eb3caf0a

View File

@ -48,7 +48,7 @@ class ModManager:
self.prefs = controller.get_prefs()
self.path = controller.query_config(Preferences.DEFAULT)
self.store: FastInsertListStore
self.store: FastInsertListStore | None = None
self.thread_man = ThreadingManager(controller)