forked from rDrama/rDrama
1
0
Fork 0
master
Aevann1 2021-07-31 15:43:34 +02:00
parent 0ca8f34856
commit edebdfac05
1 changed files with 2 additions and 1 deletions

View File

@ -419,7 +419,8 @@ class Submission(Base, Stndrd, Age_times, Scores, Fuzzing):
@property
@lazy
def ordered_flags(self):
return self.flags.order_by(Flag.created_utc)
print(self.flags.order_by(Flag.created_utc).all())
return self.flags.order_by(Flag.created_utc).all()
@property
@lazy