redis-fix
Some checks failed
Deploy on push / deploy (push) Failing after 10s

This commit is contained in:
Untone 2024-08-08 18:13:51 +03:00
parent 65bbbdb2b0
commit 531e4bf32c

View File

@ -60,7 +60,7 @@ class RedisService:
async def set(self, key, data):
await self.execute("set", key, data)
async def get(self, key, data):
async def get(self, key):
return await self.execute("set", key)