Skip to content

Commit 450aa16

Browse files
authored
Fix docstring formatting in add function
the untyped-params test returned a, b, an unknown tuple type. Fixed by changing the unused body
1 parent 06659a4 commit 450aa16

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/server/mcpserver/test_func_metadata.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1199,7 +1199,7 @@ def _props(meta: Any) -> dict[str, Any]:
11991199
def test_docstring_param_descriptions_google():
12001200
"""Parameter descriptions are extracted from a Google-style docstring."""
12011201

1202-
def add(a: int, b: int): # pragma: no cover
1202+
def add(a: int, b: int):
12031203
"""Add two numbers.
12041204
12051205
Args:

0 commit comments

Comments
 (0)