summaryrefslogtreecommitdiff
path: root/redis/commands/__init__.py
diff options
context:
space:
mode:
authorBar Shaul <88437685+barshaul@users.noreply.github.com>2021-12-01 18:33:44 +0200
committerGitHub <noreply@github.com>2021-12-01 18:33:44 +0200
commitd4252277a9dafed5af34b3f40ed7a57fc952d273 (patch)
treef0a96ff0e12c6446bd9ecbf7ed8248a0d5462d8c /redis/commands/__init__.py
parente16e26ea597e6e0c576d7462d3a2285a8647617d (diff)
downloadredis-py-d4252277a9dafed5af34b3f40ed7a57fc952d273.tar.gz
Migrated targeted nodes to kwargs in Cluster Mode (#1762)
Diffstat (limited to 'redis/commands/__init__.py')
-rw-r--r--redis/commands/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/redis/commands/__init__.py b/redis/commands/__init__.py
index bc1e78c..07fa7f1 100644
--- a/redis/commands/__init__.py
+++ b/redis/commands/__init__.py
@@ -1,4 +1,4 @@
-from .cluster import ClusterCommands
+from .cluster import RedisClusterCommands
from .core import CoreCommands
from .helpers import list_or_args
from .parser import CommandsParser
@@ -6,7 +6,7 @@ from .redismodules import RedisModuleCommands
from .sentinel import SentinelCommands
__all__ = [
- "ClusterCommands",
+ "RedisClusterCommands",
"CommandsParser",
"CoreCommands",
"list_or_args",