(self)
| 7 | |
| 8 | class ToolsRegistry: |
| 9 | def __init__(self) -> None: |
| 10 | self.tools : Dict[str, FuncToolBuilder] = {} |
| 11 | |
| 12 | def register(self, tool_name : str, tool : FuncToolBuilder): |
| 13 | print(f"will register {tool_name}") |
nothing calls this directly
no outgoing calls
no test coverage detected