Skip to content

Commit 7f36822

Browse files
committed
formatting
1 parent ad2ec44 commit 7f36822

File tree

1 file changed

+4
-1
lines changed
  • src/mcp/server/fastmcp/tools

1 file changed

+4
-1
lines changed

src/mcp/server/fastmcp/tools/base.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,10 @@ class Tool(BaseModel):
2323
name: str = Field(description="Name of the tool")
2424
description: str = Field(description="Description of what the tool does")
2525
parameters: dict[str, Any] = Field(description="JSON schema for tool parameters")
26-
output: dict[str, Any] | None = Field(description="JSON schema for tool output", default=None, )
26+
output: dict[str, Any] | None = Field(
27+
description="JSON schema for tool output",
28+
default=None,
29+
)
2730
fn_metadata: FuncMetadata = Field(
2831
description="Metadata about the function including a pydantic model for tool"
2932
" arguments"

0 commit comments

Comments
 (0)