fix EventDrivenCacheCoordinator

This commit is contained in:
Ishaan Jaffer 2026-01-31 11:10:17 -08:00
parent 4bf4e7954e
commit d53ef30f75

View file

@ -48,7 +48,7 @@ class EventDrivenCacheCoordinator:
async def _get_cached(
self, cache_key: str, cache: AsyncCacheProtocol
) -> Optional[T]:
) -> Optional[Any]:
"""Return value from cache if present, else None."""
return await cache.async_get_cache(key=cache_key)