mirror of
https://github.com/Xevion/the-office.git
synced 2025-12-16 14:13:36 -06:00
Quote repr
This commit is contained in:
@@ -120,3 +120,6 @@ class Quote(db.Model):
|
|||||||
speaker = db.Column(db.String(32)) # The name of a character
|
speaker = db.Column(db.String(32)) # The name of a character
|
||||||
text = db.Column(db.String(512)) # The content of the Quote. Usually a sentence, sometimes more.
|
text = db.Column(db.String(512)) # The content of the Quote. Usually a sentence, sometimes more.
|
||||||
section_index = db.Column(db.Integer) # The index of this quote in the section
|
section_index = db.Column(db.Integer) # The index of this quote in the section
|
||||||
|
|
||||||
|
def __repr__(self):
|
||||||
|
return f"Quote(speaker='{self.speaker}' text={self.text[:50]}{'...' if len(self.text) > 51 else ''})"
|
||||||
Reference in New Issue
Block a user