Skip to content

Commit 9019b4b

Browse files
author
文徐
committed
fix pyright check error
1 parent e977423 commit 9019b4b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/mcp/server/fastmcp/server.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ class SilentResponse(Response):
5858
def __init__(self) -> None:
5959
super().__init__()
6060

61-
async def __call__(self, scope: Scope, receive: Receive, send: Send) -> Awaitable[None]:
62-
pass
61+
async def __call__(self, scope: Scope, receive: Receive, send: Send) -> None:
62+
return
6363

6464

6565
class Settings(BaseSettings, Generic[LifespanResultT]):

0 commit comments

Comments
 (0)