From 8349d764baea06083f7427adf59294443b198198 Mon Sep 17 00:00:00 2001 From: v_anne <69829523+v-anne@users.noreply.github.com> Date: Wed, 8 Jan 2025 17:39:53 -0500 Subject: [PATCH] fixing type hint --- cl/favorites/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cl/favorites/utils.py b/cl/favorites/utils.py index 798ac21c7e..88ecaf9834 100644 --- a/cl/favorites/utils.py +++ b/cl/favorites/utils.py @@ -28,7 +28,7 @@ from cl.search.models import RECAPDocument -async def prayer_eligible(user: User) -> Tuple[bool, int]: +async def prayer_eligible(user: User) -> tuple[bool, int]: allowed_prayer_count = settings.ALLOWED_PRAYER_COUNT now = timezone.now()