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: