Skip to content

Commit 40aa842

Browse files
fix: sync doc snippets for server.md
1 parent dccc953 commit 40aa842

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/server.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ def read_config(path: str) -> str:
266266
@mcp.tool()
267267
def validate_input(data: str) -> CallToolResult:
268268
"""Validate input data."""
269-
errors = []
269+
errors: list[str] = []
270270
if len(data) < 3:
271271
errors.append("Input must be at least 3 characters")
272272
if not data.isascii():

0 commit comments

Comments
 (0)