From 41cdf5fb4e24388c72b0bab0600a40caf6963434 Mon Sep 17 00:00:00 2001 From: Yamac Ay Date: Mon, 7 Sep 2026 09:50:14 +0200 Subject: [PATCH] linting pt2 --- litellm/llms/sap/chat/transformation.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/litellm/llms/sap/chat/transformation.py b/litellm/llms/sap/chat/transformation.py index e7755bf51c6..52745cd4766 100755 --- a/litellm/llms/sap/chat/transformation.py +++ b/litellm/llms/sap/chat/transformation.py @@ -448,6 +448,6 @@ class GenAIHubOrchestrationConfig(OpenAIGPTConfig): json_mode: bool | None = False, ): if sync_stream: - return SAPStreamIterator(response=streaming_response) # pyright: ignore[reportArgumentType] + return SAPStreamIterator(response=streaming_response) # pyright: ignore[reportArgumentType] # streaming_response type matches at runtime else: - return AsyncSAPStreamIterator(response=streaming_response) # pyright: ignore[reportArgumentType] + return AsyncSAPStreamIterator(response=streaming_response) # pyright: ignore[reportArgumentType] # streaming_response type matches at runtime