Skip to content

Commit 78fc5c1

Browse files
committed
fix: fix ci
1 parent 3e0ab1e commit 78fc5c1

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

src/mcp/shared/session.py

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import logging
2-
from contextlib import AbstractAsyncContextManager
32
from datetime import timedelta
43
from typing import Any, Callable, Generic, TypeVar
54

@@ -61,7 +60,13 @@ def __init__(
6160
request_id: RequestId,
6261
request_meta: RequestParams.Meta | None,
6362
request: ReceiveRequestT,
64-
session: "BaseSession[SendRequestT, SendNotificationT, SendResultT, ReceiveRequestT, ReceiveNotificationT]",
63+
session: """BaseSession[
64+
SendRequestT,
65+
SendNotificationT,
66+
SendResultT,
67+
ReceiveRequestT,
68+
ReceiveNotificationT
69+
]""",
6570
on_complete: Callable[["RequestResponder[ReceiveRequestT, SendResultT]"], Any],
6671
) -> None:
6772
self.request_id = request_id

0 commit comments

Comments
 (0)