File tree Expand file tree Collapse file tree 4 files changed +4
-3
lines changed
Expand file tree Collapse file tree 4 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ class ClientSession(
109109 types .ClientResult ,
110110 types .ServerRequest ,
111111 types .ServerNotification ,
112- ]
112+ ],
113113):
114114 def __init__ (
115115 self ,
Original file line number Diff line number Diff line change @@ -130,4 +130,4 @@ async def list_tools(
130130 @abstractmethod
131131 async def send_roots_list_changed (self ) -> None :
132132 """Send a roots/list_changed notification."""
133- raise NotImplementedError
133+ raise NotImplementedError
Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ class ServerSession(
7878 types .ServerResult ,
7979 types .ClientRequest ,
8080 types .ClientNotification ,
81- ]
81+ ],
8282):
8383 _initialized : InitializationState = InitializationState .NotInitialized
8484 _client_params : types .InitializeRequestParams | None = None
Original file line number Diff line number Diff line change 77
88import mcp .types as types
99
10+
1011class TransportSession (abc .ABC ):
1112 """Abstract base class for transport sessions."""
1213
You can’t perform that action at this time.
0 commit comments