Skip to content

Commit 7f7c29c

Browse files
committed
format
1 parent fddc22d commit 7f7c29c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/mcp/client/websocket.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,9 @@ async def websocket_client(
5050
write_stream, write_stream_reader = anyio.create_memory_object_stream(0)
5151

5252
# Connect using websockets, requesting the "mcp" subprotocol
53-
async with ws_connect(url, subprotocols=[Subprotocol("mcp")], additional_headers=headers) as ws:
53+
async with ws_connect(
54+
url, subprotocols=[Subprotocol("mcp")], additional_headers=headers
55+
) as ws:
5456

5557
async def ws_reader():
5658
"""

0 commit comments

Comments
 (0)