diff --git a/litellm/router_utils/cooldown_cache.py b/litellm/router_utils/cooldown_cache.py index e47f77618b..2d29a1a5d3 100644 --- a/litellm/router_utils/cooldown_cache.py +++ b/litellm/router_utils/cooldown_cache.py @@ -89,7 +89,7 @@ class CooldownCache: # Process the results for model_id, result in zip(model_ids, results): if result and isinstance(result, dict): - cooldown_cache_value = CooldownCacheValue(**result) + cooldown_cache_value = CooldownCacheValue(**result) # type: ignore active_cooldowns.append((model_id, cooldown_cache_value)) return active_cooldowns @@ -107,7 +107,7 @@ class CooldownCache: # Process the results for model_id, result in zip(model_ids, results): if result and isinstance(result, dict): - cooldown_cache_value = CooldownCacheValue(**result) + cooldown_cache_value = CooldownCacheValue(**result) # type: ignore active_cooldowns.append((model_id, cooldown_cache_value)) return active_cooldowns @@ -125,7 +125,7 @@ class CooldownCache: # Process the results for model_id, result in zip(model_ids, results): if result and isinstance(result, dict): - cooldown_cache_value = CooldownCacheValue(**result) + cooldown_cache_value = CooldownCacheValue(**result) # type: ignore if cooldown_cache_value["cooldown_time"] < min_cooldown_time: min_cooldown_time = cooldown_cache_value["cooldown_time"]