typo-fix
All checks were successful
Deploy on push / deploy (push) Successful in 24s

This commit is contained in:
2024-05-05 00:00:58 +03:00
parent dc791d4e7a
commit c9205a698f
2 changed files with 17 additions and 15 deletions

View File

@@ -150,7 +150,7 @@ async def load_authors_by(_, _info, by, limit, offset):
q = q.limit(limit).offset(offset)
authors_nostat = local_session().session(q)
authors_nostat = local_session().execute(q)
authors = []
if authors_nostat:
for [a] in authors_nostat: