Replace aioredis with redis-py

This commit is contained in:
long2ice
2022-06-17 11:01:47 +08:00
parent 7fa54d311f
commit 824e2e145f
6 changed files with 63 additions and 35 deletions

View File

@@ -64,4 +64,4 @@ class PickleCoder(Coder):
@classmethod
def decode(cls, value: Any):
return pickle.loads(value) # nosec:B403
return pickle.loads(value) # nosec:B403,B301