This commit is contained in:
SvyatoslavArtymovych 2023-06-02 11:46:28 +03:00
parent 53117ce239
commit 7e7374391f
1 changed files with 1 additions and 1 deletions

View File

@ -246,7 +246,7 @@ def my_contributions():
m.InterpretationVote.interpretation_id == m.Interpretation.id,
),
),
m.Interpretation.is_deleted == False,
m.Interpretation.is_deleted == False, # noqa: E712
)
.group_by(m.Interpretation.id)
.order_by(m.Interpretation.created_at.desc())