Fix code quality check litellm_staging_12_16_2025

This commit is contained in:
Sameer Kankute 2025-12-16 16:30:41 +05:30
parent 09ba89d4fe
commit 0931d50461
2 changed files with 2 additions and 2 deletions

View file

@ -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):

View file

@ -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