remotes/1693045480750635534/spooky-22
Aevann1 2022-03-04 23:26:35 +02:00
parent b4fb188a79
commit e0d602bd1b
1 changed files with 2 additions and 4 deletions

View File

@ -88,15 +88,13 @@ class Submission(Base):
@property
@lazy
def options(self):
li = g.db.query(Comment).filter_by(parent_submission = self.id, author_id = AUTOPOLLER_ID, level=1)
return sorted(li, key=lambda x: x.id)
return g.db.query(Comment).filter_by(parent_submission = self.id, author_id = AUTOPOLLER_ID, level=1).order_by(Comment.id)
@property
@lazy
def choices(self):
li = g.db.query(Comment).filter_by(parent_submission = self.id, author_id = AUTOCHOICE_ID, level=1)
return sorted(li, key=lambda x: x.id)
return g.db.query(Comment).filter_by(parent_submission = self.id, author_id = AUTOCHOICE_ID, level=1).order_by(Comment.id)
@property