From c90783f4615c67b1ba88fc2588a3a2231937abec Mon Sep 17 00:00:00 2001 From: Untone Date: Mon, 27 May 2024 19:38:34 +0300 Subject: [PATCH] async-fix-3 --- resolvers/author.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resolvers/author.py b/resolvers/author.py index d0f24073..b4a78264 100644 --- a/resolvers/author.py +++ b/resolvers/author.py @@ -346,7 +346,7 @@ async def get_author_followers(_, _info, slug: str): Author.id != author_id, ), ) - followers_result = await session.execute(followers_query) + followers_result = session.execute(followers_query) followers = followers_result.scalars().all() if isinstance(followers, list):