Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Jan 8, 2025
1 parent 64082e0 commit 923a21c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cl/favorites/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@ async def prayer_eligible(user: User) -> Tuple[bool, int]:
user=user, date_created__gte=last_24_hours
).acount()

return prayer_count < allowed_prayer_count, (allowed_prayer_count - prayer_count)
return prayer_count < allowed_prayer_count, (
allowed_prayer_count - prayer_count
)


async def create_prayer(
Expand Down

0 comments on commit 923a21c

Please sign in to comment.