Fixes python formatting

This commit is contained in:
Mouse Reeve 2021-03-28 10:45:46 -07:00
parent c42719ee1e
commit 6f99947cac

View file

@ -205,7 +205,7 @@ def get_suggested_users(user, *args, **kwargs):
~Q(id__in=user.following.all()), ~Q(id__in=user.following.all()),
following__in=user.following.all(), following__in=user.following.all(),
), ),
distinct=True distinct=True,
), ),
shared_books=Count( shared_books=Count(
"shelfbook", "shelfbook",
@ -215,7 +215,7 @@ def get_suggested_users(user, *args, **kwargs):
s.book.parent_work for s in user.shelfbook_set.all() s.book.parent_work for s in user.shelfbook_set.all()
], ],
), ),
distinct=True distinct=True,
), ),
) )
) )