diff options
Diffstat (limited to 'redis/asyncio/client.py')
-rw-r--r-- | redis/asyncio/client.py | 4 |
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. |