From baaa4895872894df33e0fedbe5e2bb0f1a6805ba Mon Sep 17 00:00:00 2001 From: Krrish Dholakia Date: Sat, 12 Apr 2025 08:05:41 -0700 Subject: [PATCH] fix: fix code qa errors --- litellm/proxy/hooks/managed_files.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/litellm/proxy/hooks/managed_files.py b/litellm/proxy/hooks/managed_files.py index 4e56e0eb3f..9ac6cc580b 100644 --- a/litellm/proxy/hooks/managed_files.py +++ b/litellm/proxy/hooks/managed_files.py @@ -3,7 +3,6 @@ import base64 import json -import asyncio import uuid from abc import ABC, abstractmethod from typing import TYPE_CHECKING, Any, Dict, List, Literal, Optional, Union, cast @@ -20,7 +19,7 @@ from litellm.types.llms.openai import ( OpenAIFileObject, OpenAIFilesPurpose, ) -from litellm.types.utils import LLMResponseTypes, SpecialEnums +from litellm.types.utils import SpecialEnums if TYPE_CHECKING: from opentelemetry.trace import Span as _Span @@ -428,4 +427,3 @@ class _PROXY_LiteLLMManagedFiles(CustomLogger): ) else: raise Exception(f"LiteLLM Managed File object with id={file_id} not found") -