From 003cc8bd1d96a16ad655a97ed59f0da02ace8360 Mon Sep 17 00:00:00 2001 From: behruz-dev Date: Tue, 2 Sep 2025 13:44:32 +0500 Subject: [PATCH] fix bug --- core/apps/accounts/cache.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/apps/accounts/cache.py b/core/apps/accounts/cache.py index 3a23b58..82da31a 100644 --- a/core/apps/accounts/cache.py +++ b/core/apps/accounts/cache.py @@ -14,7 +14,7 @@ def cache_user_credentials(email, password, passport_id, pnfl, time): r.expire(key, time) -c + def get_user_credentials(email): key = f"user_credentials:{email}" data = r.hgetall(key)