This commit is contained in:
Aevann1 2021-10-21 15:02:47 +02:00
parent 3d2936965c
commit 770430b9bf
4 changed files with 52 additions and 23 deletions

View file

@ -53,8 +53,6 @@ class Comment(Base):
parent_comment = relationship("Comment", remote_side=[id], viewonly=True)
child_comments = relationship("Comment", remote_side=[parent_comment_id], viewonly=True)
awards = relationship("AwardRelationship", viewonly=True)
awards = None
def __init__(self, *args, **kwargs):