From 2660ad5cb3c63d5ea5a7579de180e4f9025aa7d1 Mon Sep 17 00:00:00 2001 From: Untone Date: Sun, 31 Aug 2025 20:03:44 +0300 Subject: [PATCH] fmt-fix --- resolvers/author.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/resolvers/author.py b/resolvers/author.py index b0471948..b5c5df86 100644 --- a/resolvers/author.py +++ b/resolvers/author.py @@ -368,8 +368,7 @@ async def get_authors_with_stats( ).label("total_replies"), ) .select_from( - replies_to_comments_subq - .outerjoin( + replies_to_comments_subq.outerjoin( comments_on_posts_subq, replies_to_comments_subq.c.author_id == comments_on_posts_subq.c.author_id, )