Skip to content

Commit 178571b

Browse files
committed
fmt
1 parent 25600d4 commit 178571b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/mcp/client/streamable.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,11 @@ async def post_writer():
9595
*headers,
9696
),
9797
)
98+
content_type = response.headers.get("content-type")
9899
logger.debug(
99-
f"response {url=} content-type={response.headers.get("content-type")} body={response.text}"
100+
f"response {url=} "
101+
f"content-type={content_type} "
102+
f"body={response.text}"
100103
)
101104

102105
response.raise_for_status()

0 commit comments

Comments
 (0)