From 18b4253e1f4728acd661075ccf419dfc1ae39714 Mon Sep 17 00:00:00 2001 From: Jeremiah Lowin <153965+jlowin@users.noreply.github.com> Date: Sun, 4 May 2025 15:02:23 -0400 Subject: [PATCH] Update src/fastmcp/resources/template.py Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- src/fastmcp/resources/template.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fastmcp/resources/template.py b/src/fastmcp/resources/template.py index 3c37296aa..04fae970f 100644 --- a/src/fastmcp/resources/template.py +++ b/src/fastmcp/resources/template.py @@ -146,7 +146,7 @@ class ResourceTemplate(BaseModel): f"Required function arguments {required_params} must be a subset of the URI parameters {uri_params}" ) - # CHeck if the URI parameters are a subset of the function parameters (skip if **kwargs present) + # Check if the URI parameters are a subset of the function parameters (skip if **kwargs present) if not any( param.kind == inspect.Parameter.VAR_KEYWORD for param in sig.parameters.values()