nodist
All checks were successful
Deploy on push / deploy (push) Successful in 6s

This commit is contained in:
Untone 2024-11-01 21:30:52 +03:00
parent 567507c412
commit 021765340a

View File

@ -65,7 +65,6 @@ def query_with_stat(info):
# Основной запрос без GROUP BY # Основной запрос без GROUP BY
q = ( q = (
select(Shout) select(Shout)
.distinct()
.join(Author, Author.id == Shout.created_by) .join(Author, Author.id == Shout.created_by)
) )