Skip to content

Commit 7ebed76

Browse files
committed
Fix line length
1 parent 3437361 commit 7ebed76

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/mcp/server/sse.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,8 @@ async def connect_sse(self, scope: Scope, receive: Receive, send: Send):
104104
logger.debug(f"Created new session with ID: {session_id}")
105105

106106
# Determine the full path for the message endpoint to be sent to the client.
107-
# scope['root_path'] is the prefix where the current Starlette app instance is mounted.
107+
# scope['root_path'] is the prefix where the current Starlette app
108+
# instance is mounted.
108109
# e.g., "" if top-level, or "/api_prefix" if mounted under "/api_prefix".
109110
root_path = scope.get("root_path", "")
110111

0 commit comments

Comments
 (0)