(self, node_id: str, state: NodeProgressState, prompt_id: str)
| 229 | |
| 230 | @override |
| 231 | def finish_handler(self, node_id: str, state: NodeProgressState, prompt_id: str): |
| 232 | # Send progress state of all nodes |
| 233 | if self.registry: |
| 234 | self._send_progress_state(prompt_id, self.registry.nodes) |
| 235 | |
| 236 | class ProgressRegistry: |
| 237 | """ |
nothing calls this directly
no test coverage detected