From 35a6801ccd3b0bdd6d0f810690870be5de6e0ed5 Mon Sep 17 00:00:00 2001 From: Ishaan Jaffer Date: Fri, 1 May 2026 19:45:22 -0700 Subject: [PATCH] style(mcp): remove unused Optional import in token_exchange.py --- litellm/proxy/_experimental/mcp_server/auth/token_exchange.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litellm/proxy/_experimental/mcp_server/auth/token_exchange.py b/litellm/proxy/_experimental/mcp_server/auth/token_exchange.py index 68ff367e594..fcfbf95a377 100644 --- a/litellm/proxy/_experimental/mcp_server/auth/token_exchange.py +++ b/litellm/proxy/_experimental/mcp_server/auth/token_exchange.py @@ -11,7 +11,7 @@ See: https://datatracker.ietf.org/doc/html/rfc8693 import asyncio import hashlib import weakref -from typing import TYPE_CHECKING, Dict, Optional, Tuple +from typing import TYPE_CHECKING, Dict, Tuple import httpx