From 0eedf1028f46c167e90096e63f960a3e3d787db7 Mon Sep 17 00:00:00 2001 From: Ishaan Jaffer Date: Sat, 27 Sep 2025 17:45:49 -0700 Subject: [PATCH] mypy fix --- litellm/types/llms/openai.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litellm/types/llms/openai.py b/litellm/types/llms/openai.py index 3bf4a5c3822..434035b809e 100644 --- a/litellm/types/llms/openai.py +++ b/litellm/types/llms/openai.py @@ -44,7 +44,7 @@ from openai.types.responses.response import ( # Handle OpenAI SDK version compatibility for Text type try: # fmt: off - from openai.types.responses.response_create_params import ( + from openai.types.responses.response_create_params import ( # type: ignore[attr-defined] Text as ResponseText, # type: ignore[attr-defined] )