(self)
| 290 | |
| 291 | class OuterToolset(Toolset): |
| 292 | def __init__(self): |
| 293 | super().__init__(id="outer", tools=[WeatherToolset(), stock_tool]) |
| 294 | |
| 295 | ts = ToolProxyToolset(id="proxy", tools=[OuterToolset()]) |
| 296 | await ts.setup() |
nothing calls this directly
no test coverage detected