Skip to content

Commit 814a05d

Browse files
committed
add description
1 parent 7c2125d commit 814a05d

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/mcp/client/transport_session.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ async def initialize(self) -> types.InitializeResult:
1818

1919
@abstractmethod
2020
async def send_ping(self) -> types.EmptyResult:
21+
"""Send a ping request."""
2122
raise NotImplementedError
2223

2324
@abstractmethod
@@ -28,6 +29,7 @@ async def send_progress_notification(
2829
total: float | None = None,
2930
message: str | None = None,
3031
) -> None:
32+
"""Send a progress notification."""
3133
raise NotImplementedError
3234

3335
@abstractmethod

0 commit comments

Comments
 (0)