From 0ffc81f010b8bf5402fd7360fc123ddafade2664 Mon Sep 17 00:00:00 2001 From: Krrish Dholakia Date: Sun, 12 Oct 2025 22:01:16 -0700 Subject: [PATCH] fix: fix reformatting --- litellm/types/llms/openai.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/litellm/types/llms/openai.py b/litellm/types/llms/openai.py index aed6bcfb57..56971b91e5 100644 --- a/litellm/types/llms/openai.py +++ b/litellm/types/llms/openai.py @@ -43,12 +43,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 ( - Text as ResponseText, # type: ignore[attr-defined] - ) - - # fmt: on + from openai.types.responses.response_create_params import ( Text as ResponseText ) # type: ignore[attr-defined] # fmt: skip # isort: skip except (ImportError, AttributeError): # Fall back to the concrete config type available in all SDK versions from openai.types.responses.response_text_config_param import (