This commit is contained in:
Vxrtrauter
2026-03-04 20:58:58 +01:00
3 changed files with 6 additions and 3 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ class AppState(QObject):
def __init__(self):
super().__init__()
self.posts: List[Dict[str, Any]] = []
self.posts: list[Any] | None = None
self.post_titles: Optional[List] = None
self.post_urls: Optional[List] = None
self.post_author: List[str] = []