Fixed typo

This commit is contained in:
Daniel Schick 2025-02-08 11:16:21 +01:00
parent ab12e28d3d
commit 7f706dfc51

View File

@ -579,7 +579,7 @@ class User:
def __hash__(self):
return hash(id)
def wants_notification(self, notification_type: NotificationType):
def wants_notifications(self, notification_type: NotificationType):
return notification_type in self.notify_event
@dataclass