(self, *args: Any, **kwargs: Any)
| 119 | await h.on_tool_start(*args, **kwargs) |
| 120 | |
| 121 | async def on_tool_end(self, *args: Any, **kwargs: Any) -> None: |
| 122 | for h in self._inner: |
| 123 | await h.on_tool_end(*args, **kwargs) |
| 124 | |
| 125 | |
| 126 | def _archive_run_artifacts( |
nothing calls this directly
no outgoing calls
no test coverage detected