fix(python-bridge): update cache test handle stubs for merged backends

Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
This commit is contained in:
Yujong Lee 2026-09-21 22:30:29 +00:00
parent 2129a94e56
commit 2ab4b25588

View file

@ -109,11 +109,14 @@ class _CacheTestHandle:
*,
ttl_seconds: float = 60.0,
namespace: str | None = None,
startup_nodes: list[tuple[str, int]] | None = None,
) -> _CacheTestHandle: ...
@staticmethod
def azure_blob(account_url: str, container: str) -> _CacheTestHandle: ...
@staticmethod
def redis_semantic(backend: object) -> _CacheTestHandle: ...
@property
def backend(self) -> Literal["memory", "redis", "redis_semantic"]: ...
def backend(self) -> Literal["memory", "redis", "azure-blob", "redis_semantic"]: ...
def _bind_facade(self, facade: object) -> None: ...
@final