summaryrefslogtreecommitdiff
path: root/redis/typing.py
diff options
context:
space:
mode:
Diffstat (limited to 'redis/typing.py')
-rw-r--r--redis/typing.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/redis/typing.py b/redis/typing.py
index 8504c7d..47a2556 100644
--- a/redis/typing.py
+++ b/redis/typing.py
@@ -47,7 +47,7 @@ class CommandsProtocol(Protocol):
...
-class ClusterCommandsProtocol(CommandsProtocol):
+class ClusterCommandsProtocol(CommandsProtocol, Protocol):
encoder: Union["AsyncEncoder", "Encoder"]
def execute_command(self, *args, **options) -> Union[Any, Awaitable]: