forked from rDrama/rDrama
1
0
Fork 0

make user object include username when printed

master
Aevann1 2022-07-30 00:28:07 +02:00
parent 2f94a7f464
commit 527bae24f9
1 changed files with 1 additions and 1 deletions

View File

@ -156,7 +156,7 @@ class User(Base):
def __repr__(self):
return f"<User(id={self.id})>"
return f"<User(id={self.id}, username={self.username})>"
@lazy