(func)
| 28 | def tool(self): |
| 29 | # Return a decorator that just returns the original function |
| 30 | def decorator(func): |
| 31 | return func |
| 32 | return decorator |
| 33 | |
| 34 | # Mock the MCP modules with our custom FastMCP |
nothing calls this directly
no outgoing calls
no test coverage detected