From dc9a2f6782245e17ca553af983d485f9870a3f72 Mon Sep 17 00:00:00 2001 From: Aevann Date: Sat, 11 Mar 2023 10:18:40 +0200 Subject: [PATCH] fix repr for Notification --- files/classes/notifications.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/classes/notifications.py b/files/classes/notifications.py index 01cf0c62d..5ad09c049 100644 --- a/files/classes/notifications.py +++ b/files/classes/notifications.py @@ -22,4 +22,4 @@ class Notification(Base): super().__init__(*args, **kwargs) def __repr__(self): - return f"<{self.__class__.__name__}(id={self.id})>" + return f"<{self.__class__.__name__}(user_id={self.user_id}, comment_id={self.comment_id})>"