From 329f595f5f35731a22ed939280846160697cd5f2 Mon Sep 17 00:00:00 2001 From: David Soria Parra Date: Fri, 3 Jan 2025 15:53:19 +0000 Subject: [PATCH] fix: Fix line length in test_server.py --- tests/server/fastmcp/test_server.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/server/fastmcp/test_server.py b/tests/server/fastmcp/test_server.py index 63841af..f5d4214 100644 --- a/tests/server/fastmcp/test_server.py +++ b/tests/server/fastmcp/test_server.py @@ -36,7 +36,9 @@ class TestServer: mcp = FastMCP() @mcp.tool( - description="🌟 This tool uses emojis and UTF-8 characters: á é í ó ú ñ 漢字 🎉" + description=( + "🌟 This tool uses emojis and UTF-8 characters: á é í ó ú ñ 漢字 🎉" + ) ) def hello_world(name: str = "世界") -> str: return f"¡Hola, {name}! 👋"