mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-06 08:16:43 +00:00
fix install on python
This commit is contained in:
parent
d4107dfd68
commit
c59772bae9
1 changed files with 2 additions and 2 deletions
|
|
@ -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.
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue