From 9009ad3f00d3f558f8de6ca01f45f1248f0b1ab1 Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Fri, 8 Aug 2025 08:35:24 -0600 Subject: [PATCH] Fix iterator type --- frigate/comms/webpush.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frigate/comms/webpush.py b/frigate/comms/webpush.py index 8b723483f..4a7f14f7d 100644 --- a/frigate/comms/webpush.py +++ b/frigate/comms/webpush.py @@ -70,7 +70,7 @@ class WebPushClient(Communicator): # Pull keys from PEM or generate if they do not exist self.vapid = Vapid01.from_file(os.path.join(CONFIG_DIR, "notifications.pem")) - users: list[User] = ( + users: list[dict[str, Any]] = ( User.select(User.username, User.notification_tokens).dicts().iterator() ) for user in users: