Skip to content

Commit 329f595

Browse files
committed
fix: Fix line length in test_server.py
1 parent 118ddcc commit 329f595

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/server/fastmcp/test_server.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,9 @@ async def test_non_ascii_description(self):
3636
mcp = FastMCP()
3737

3838
@mcp.tool(
39-
description="🌟 This tool uses emojis and UTF-8 characters: á é í ó ú ñ 漢字 🎉"
39+
description=(
40+
"🌟 This tool uses emojis and UTF-8 characters: á é í ó ú ñ 漢字 🎉"
41+
)
4042
)
4143
def hello_world(name: str = "世界") -> str:
4244
return f"¡Hola, {name}! 👋"

0 commit comments

Comments
 (0)