fix repr for Notification

pull/139/head
Aevann 2023-03-11 10:18:40 +02:00
parent b4e4e6e5e3
commit dc9a2f6782
1 changed files with 1 additions and 1 deletions

View File

@ -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})>"