From ca5f22ec0f94d1882eee4ae945154fe7e9f25961 Mon Sep 17 00:00:00 2001 From: Untone Date: Thu, 26 Sep 2024 18:43:21 +0300 Subject: [PATCH] removed-fix --- store.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/store.py b/store.py index 3bdcd65..c82bc40 100644 --- a/store.py +++ b/store.py @@ -16,6 +16,6 @@ async def get_all_removed(uid): # Fetch the value for each key value = await redis.get(key) if value: - texts.append(int(value)) + texts.append(str(value)) return texts