We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63f986f commit 3131315Copy full SHA for 3131315
1 file changed
src/a2a/client/transports/http_helpers.py
@@ -73,7 +73,8 @@ async def send_http_stream_request(
73
httpx_client: httpx.AsyncClient,
74
method: str,
75
url: str,
76
- status_error_handler: Callable[[httpx.HTTPStatusError], NoReturn],
+ status_error_handler: Callable[[httpx.HTTPStatusError], NoReturn]
77
+ | None = None,
78
sse_error_handler: Callable[[str], NoReturn] = _default_sse_error_handler,
79
**kwargs: Any,
80
) -> AsyncGenerator[str]:
0 commit comments