From 0dd0c773e25849de267dd1e8f1f4886abe005560 Mon Sep 17 00:00:00 2001 From: Ishaan Jaffer Date: Sat, 27 Sep 2025 15:46:10 -0700 Subject: [PATCH] fix mypy typng --- litellm/types/llms/openai.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/litellm/types/llms/openai.py b/litellm/types/llms/openai.py index 73e031f9893..93410410818 100644 --- a/litellm/types/llms/openai.py +++ b/litellm/types/llms/openai.py @@ -43,8 +43,8 @@ from openai.types.responses.response import ( # Handle OpenAI SDK version compatibility for Text type try: - from openai.types.responses.response_create_params import ( # type: ignore[attr-defined] - Text as ResponseText, + from openai.types.responses.response_create_params import ( + Text as ResponseText, # type: ignore[attr-defined] ) except (ImportError, AttributeError): # Fall back to the concrete config type available in all SDK versions