forked from rDrama/rDrama
1
0
Fork 0

fix 500 error

master
Aevann1 2022-07-15 01:23:15 +02:00
parent 09da483bac
commit e40f6881d8
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ class CommentOption(Base):
exclusive = Column(Boolean)
votes = relationship("CommentOptionVote")
post = relationship("Comment", back_populates="options")
comment = relationship("Comment", back_populates="options")
def __repr__(self):
return f"<CommentOption(id={self.id})>"