Fix event initialization issues

- Remove None assignment for download_progress event in AniworldLoader
- Remove None assignments for download_status and scan_status events in SeriesApp
- Events library requires events to not be initialized to None
- Verified logging configuration is properly set to INFO level
This commit is contained in:
2026-01-07 19:39:42 +01:00
parent 60070395e9
commit bd655cb0f0
8 changed files with 18 additions and 59 deletions

View File

@@ -154,8 +154,6 @@ class SeriesApp:
# Initialize events
self._events = Events()
self._events.download_status = None
self._events.scan_status = None
self.loaders = Loaders()
self.loader = self.loaders.GetLoader(key="aniworld.to")