diff options
Diffstat (limited to 'redis/commands/cluster.py')
-rw-r--r-- | redis/commands/cluster.py | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/redis/commands/cluster.py b/redis/commands/cluster.py index 5d0e804..8bdcbba 100644 --- a/redis/commands/cluster.py +++ b/redis/commands/cluster.py @@ -1,7 +1,13 @@ from redis.crc import key_slot from redis.exceptions import RedisClusterException, RedisError -from .core import ACLCommands, DataAccessCommands, ManagementCommands, PubSubCommands +from .core import ( + ACLCommands, + DataAccessCommands, + ManagementCommands, + PubSubCommands, + ScriptCommands, +) from .helpers import list_or_args @@ -205,6 +211,7 @@ class RedisClusterCommands( ACLCommands, PubSubCommands, ClusterDataAccessCommands, + ScriptCommands, ): """ A class for all Redis Cluster commands |