Spaces:
Running
Running
Jeremiah Lowin Copilot commited on
Update src/fastmcp/resources/template.py
Browse filesCo-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
src/fastmcp/resources/template.py
CHANGED
|
@@ -146,7 +146,7 @@ class ResourceTemplate(BaseModel):
|
|
| 146 |
f"Required function arguments {required_params} must be a subset of the URI parameters {uri_params}"
|
| 147 |
)
|
| 148 |
|
| 149 |
-
#
|
| 150 |
if not any(
|
| 151 |
param.kind == inspect.Parameter.VAR_KEYWORD
|
| 152 |
for param in sig.parameters.values()
|
|
|
|
| 146 |
f"Required function arguments {required_params} must be a subset of the URI parameters {uri_params}"
|
| 147 |
)
|
| 148 |
|
| 149 |
+
# Check if the URI parameters are a subset of the function parameters (skip if **kwargs present)
|
| 150 |
if not any(
|
| 151 |
param.kind == inspect.Parameter.VAR_KEYWORD
|
| 152 |
for param in sig.parameters.values()
|