Merge another ToolSet into this one.
(self, other: "ToolSet")
| 346 | return [tool.name for tool in self.tools] |
| 347 | |
| 348 | def merge(self, other: "ToolSet") -> None: |
| 349 | """Merge another ToolSet into this one.""" |
| 350 | for tool in other.tools: |
| 351 | self.add_tool(tool) |
| 352 | |
| 353 | def __len__(self) -> int: |
| 354 | return len(self.tools) |
no test coverage detected