summaryrefslogtreecommitdiff
path: root/redis/asyncio/client.py
diff options
context:
space:
mode:
authordvora-h <67596500+dvora-h@users.noreply.github.com>2022-04-28 14:16:47 +0300
committerGitHub <noreply@github.com>2022-04-28 14:16:47 +0300
commit1475e5ced1469379a50502e47ec798458bd00f59 (patch)
tree8278f33855d2303aea7f00d250a6d0f6f4feb782 /redis/asyncio/client.py
parentc29d158c854c659994b6d8704d4b420faaa95bca (diff)
downloadredis-py-1475e5ced1469379a50502e47ec798458bd00f59.tar.gz
Add async supoort for SEARCH commands (#2096)
* Add async supoort for SEARCH commands * linters * linters * linters * linters * linters
Diffstat (limited to 'redis/asyncio/client.py')
-rw-r--r--redis/asyncio/client.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/redis/asyncio/client.py b/redis/asyncio/client.py
index 559b74c..7689e12 100644
--- a/redis/asyncio/client.py
+++ b/redis/asyncio/client.py
@@ -41,8 +41,8 @@ from redis.client import (
)
from redis.commands import (
AsyncCoreCommands,
+ AsyncRedisModuleCommands,
AsyncSentinelCommands,
- RedisModuleCommands,
list_or_args,
)
from redis.compat import Protocol, TypedDict
@@ -81,7 +81,7 @@ ResponseCallbackT = Union[ResponseCallbackProtocol, AsyncResponseCallbackProtoco
class Redis(
- AbstractRedis, RedisModuleCommands, AsyncCoreCommands, AsyncSentinelCommands
+ AbstractRedis, AsyncRedisModuleCommands, AsyncCoreCommands, AsyncSentinelCommands
):
"""
Implementation of the Redis protocol.