Skip to content

Commit 92f806b

Browse files
committed
fixed long line
1 parent 07e1a52 commit 92f806b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/mcp/shared/session.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,10 @@
3434
SendRequestT = TypeVar("SendRequestT", ClientRequest, ServerRequest)
3535
SendResultT = TypeVar("SendResultT", ClientResult, ServerResult)
3636
SendNotificationT = TypeVar("SendNotificationT", ClientNotification, ServerNotification)
37-
SendNotificationInternalT = TypeVar("SendNotificationInternalT", CancelledNotification, ClientNotification, ServerNotification)
37+
SendNotificationInternalT = TypeVar(
38+
"SendNotificationInternalT",
39+
CancelledNotification, ClientNotification, ServerNotification
40+
)
3841
ReceiveRequestT = TypeVar("ReceiveRequestT", ClientRequest, ServerRequest)
3942
ReceiveResultT = TypeVar("ReceiveResultT", bound=BaseModel)
4043
ReceiveNotificationT = TypeVar(

0 commit comments

Comments
 (0)