fix wrong attribute

pull/199/head
Aevann 2023-09-14 02:47:50 +03:00
parent 15083eccb6
commit 08a5fd6f54
1 changed files with 1 additions and 1 deletions

View File

@ -21,4 +21,4 @@ class GroupMembership(Base):
super().__init__(*args, **kwargs)
def __repr__(self):
return f"<{self.__class__.__name__}(user_id={self.user_id}, group={self.group})>"
return f"<{self.__class__.__name__}(user_id={self.user_id}, group_name={self.group_name})>"