Skip to content

Commit e1ac07f

Browse files
committed
fix ruff format
1 parent 46b01ce commit e1ac07f

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

src/mcp/client/session.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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,

src/mcp/client/transport_session.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

src/mcp/server/session.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

src/mcp/server/transport_session.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
import mcp.types as types
99

10+
1011
class TransportSession(abc.ABC):
1112
"""Abstract base class for transport sessions."""
1213

0 commit comments

Comments
 (0)