We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 791f482 commit d2b2333Copy full SHA for d2b2333
redis/client.py
@@ -6,7 +6,8 @@
6
import threading
7
import time
8
import warnings
9
-from redis.commands import CoreCommands, RedisModuleCommands, list_or_args
+from redis.commands import (CoreCommands, RedisModuleCommands,
10
+ SentinelCommands, list_or_args)
11
from redis.connection import (ConnectionPool, UnixDomainSocketConnection,
12
SSLConnection)
13
from redis.lock import Lock
@@ -606,7 +607,7 @@ def parse_set_result(response, **options):
606
607
return response and str_if_bytes(response) == 'OK'
608
609
-class Redis(RedisModuleCommands, CoreCommands, object):
610
+class Redis(RedisModuleCommands, CoreCommands, SentinelCommands, object):
611
"""
612
Implementation of the Redis protocol.
613
0 commit comments