We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3cc16ef commit 473a678Copy full SHA for 473a678
src/mcp/client/sse.py
@@ -61,11 +61,7 @@ async def sse_client(
61
async with httpx_client_factory(
62
headers=headers, auth=auth, timeout=httpx.Timeout(timeout, read=sse_read_timeout)
63
) as client:
64
- async with aconnect_sse(
65
- client,
66
- "GET",
67
- url,
68
- ) as event_source:
+ async with aconnect_sse(client, "GET", url) as event_source:
69
event_source.response.raise_for_status()
70
logger.debug("SSE connection established")
71
0 commit comments