Skip to content

Commit 9ec3012

Browse files
committed
fix: format
1 parent 916a6eb commit 9ec3012

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

src/mcp/cli/claude.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ def get_claude_config_path() -> Path | None:
1919
elif sys.platform == "darwin":
2020
path = Path(Path.home(), "Library", "Application Support", "Claude")
2121
elif sys.platform.startswith("linux"):
22-
path = Path(os.environ.get("XDG_CONFIG_HOME", Path.home() / ".config"), "Claude")
22+
path = Path(
23+
os.environ.get("XDG_CONFIG_HOME", Path.home() / ".config"), "Claude"
24+
)
2325
else:
2426
return None
2527

src/mcp/client/websocket.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@
1515

1616

1717
@asynccontextmanager
18-
async def websocket_client(url: str) -> AsyncGenerator[
18+
async def websocket_client(
19+
url: str,
20+
) -> AsyncGenerator[
1921
tuple[
2022
MemoryObjectReceiveStream[types.JSONRPCMessage | Exception],
2123
MemoryObjectSendStream[types.JSONRPCMessage],
@@ -59,7 +61,7 @@ async def ws_reader():
5961

6062
async def ws_writer():
6163
"""
62-
Reads JSON-RPC messages from write_stream_reader and
64+
Reads JSON-RPC messages from write_stream_reader and
6365
sends them to the server.
6466
"""
6567
async with write_stream_reader:

0 commit comments

Comments
 (0)