From 0931d504610620617439655dfbcd431575ce6534 Mon Sep 17 00:00:00 2001 From: Sameer Kankute Date: Tue, 16 Dec 2025 16:30:41 +0530 Subject: [PATCH] Fix code quality check litellm_staging_12_16_2025 --- litellm/a2a_protocol/providers/base.py | 2 +- .../a2a_protocol/providers/pydantic_ai_agents/transformation.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/litellm/a2a_protocol/providers/base.py b/litellm/a2a_protocol/providers/base.py index 656bc78d6d2..9931076a948 100644 --- a/litellm/a2a_protocol/providers/base.py +++ b/litellm/a2a_protocol/providers/base.py @@ -3,7 +3,7 @@ Base configuration for A2A protocol providers. """ from abc import ABC, abstractmethod -from typing import Any, AsyncIterator, Dict, Optional +from typing import Any, AsyncIterator, Dict class BaseA2AProviderConfig(ABC): diff --git a/litellm/a2a_protocol/providers/pydantic_ai_agents/transformation.py b/litellm/a2a_protocol/providers/pydantic_ai_agents/transformation.py index 67c2154f6c9..6f46933cf9f 100644 --- a/litellm/a2a_protocol/providers/pydantic_ai_agents/transformation.py +++ b/litellm/a2a_protocol/providers/pydantic_ai_agents/transformation.py @@ -6,7 +6,7 @@ This module provides fake streaming by converting non-streaming responses into s """ import asyncio -from typing import Any, AsyncIterator, Dict, Optional +from typing import Any, AsyncIterator, Dict from uuid import uuid4 import httpx