From d53ef30f75fb27288ddd3a40fd218c59dcf42691 Mon Sep 17 00:00:00 2001 From: Ishaan Jaffer Date: Sat, 31 Jan 2026 11:10:17 -0800 Subject: [PATCH] fix EventDrivenCacheCoordinator --- litellm/proxy/common_utils/cache_coordinator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litellm/proxy/common_utils/cache_coordinator.py b/litellm/proxy/common_utils/cache_coordinator.py index 60d7e3947a6..9b07def125b 100644 --- a/litellm/proxy/common_utils/cache_coordinator.py +++ b/litellm/proxy/common_utils/cache_coordinator.py @@ -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)