diff options
Diffstat (limited to 'redis/commands/__init__.py')
-rw-r--r-- | redis/commands/__init__.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/redis/commands/__init__.py b/redis/commands/__init__.py index b9dd0b7..de21a9e 100644 --- a/redis/commands/__init__.py +++ b/redis/commands/__init__.py @@ -2,7 +2,7 @@ from .cluster import RedisClusterCommands from .core import AsyncCoreCommands, CoreCommands from .helpers import list_or_args from .parser import CommandsParser -from .redismodules import RedisModuleCommands +from .redismodules import AsyncRedisModuleCommands, RedisModuleCommands from .sentinel import AsyncSentinelCommands, SentinelCommands __all__ = [ @@ -11,6 +11,7 @@ __all__ = [ "AsyncCoreCommands", "CoreCommands", "list_or_args", + "AsyncRedisModuleCommands", "RedisModuleCommands", "AsyncSentinelCommands", "SentinelCommands", |