🐑 Add Redis unlink function to client stubs (#4624)

Resolves #4623
This commit is contained in:
coiax
2020-10-06 12:44:10 +01:00
committed by GitHub
parent cc71b6a4ed
commit 714135f91b

View File

@@ -167,6 +167,7 @@ class Redis(object):
def ttl(self, name: _Key) -> int: ...
def type(self, name): ...
def watch(self, *names): ...
def unlink(self, *names: _Key) -> int: ...
def unwatch(self): ...
def blpop(self, keys: Union[_Value, Iterable[_Value]], timeout: int = ...) -> Optional[Tuple[bytes, bytes]]: ...
def brpop(self, keys: Union[_Value, Iterable[_Value]], timeout: int = ...) -> Optional[Tuple[bytes, bytes]]: ...