From 76d658eee84bc248d6d00bad07b9d60d622a09ba Mon Sep 17 00:00:00 2001 From: Ishaan Jaffer Date: Thu, 23 Oct 2025 18:05:30 -0700 Subject: [PATCH] fix linting --- litellm/types/search.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/litellm/types/search.py b/litellm/types/search.py index 77a4c9ea72..661a2feda3 100644 --- a/litellm/types/search.py +++ b/litellm/types/search.py @@ -3,9 +3,9 @@ LiteLLM Search API Types This module defines types for the unified search API across different providers. """ -from typing import List, Optional, Required +from typing import List, Optional -from typing_extensions import TypedDict +from typing_extensions import Required, TypedDict from litellm.types.utils import SearchProviders