From c59772bae9a38921241c3ae4c3ccfcfe69bcddae Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Sat, 14 Jun 2025 15:42:06 -0700 Subject: [PATCH] fix install on python --- litellm/proxy/caching_routes.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/litellm/proxy/caching_routes.py b/litellm/proxy/caching_routes.py index 355efb867e7..20c951d350d 100644 --- a/litellm/proxy/caching_routes.py +++ b/litellm/proxy/caching_routes.py @@ -1,4 +1,4 @@ -from typing import Any, Dict +from typing import Any, Dict, List, Tuple from fastapi import APIRouter, Depends, HTTPException, Request @@ -159,7 +159,7 @@ async def cache_delete(request: Request): ) -def _get_redis_client_info(cache_instance) -> tuple[list, int]: +def _get_redis_client_info(cache_instance) -> Tuple[List, int]: """ Helper function to safely get Redis client list information.