redis: complete echo command stub (redis.client.Redis.echo) (#5033)

This commit is contained in:
Guilhem C
2021-02-22 13:18:45 +01:00
committed by GitHub
parent 4029e8d6eb
commit ad2624551b

View File

@@ -394,7 +394,7 @@ class Redis(Generic[_StrType]):
def config_rewrite(self): ...
def dbsize(self) -> int: ...
def debug_object(self, key): ...
def echo(self, value): ...
def echo(self, value: _Value) -> bytes: ...
def flushall(self) -> bool: ...
def flushdb(self) -> bool: ...
def info(self, section: Optional[_Key] = ...) -> Mapping[str, Any]: ...