linting pt2

This commit is contained in:
Yamac Ay 2026-09-07 09:50:14 +02:00
parent d6a70b4e0f
commit 41cdf5fb4e
No known key found for this signature in database
GPG key ID: D113B438819CA628

View file

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