(self)
| 81 | timed_out: bool = False |
| 82 | |
| 83 | def to_dict(self) -> dict[str, Any]: |
| 84 | return { |
| 85 | "command": self.command, |
| 86 | "output": self.output, |
| 87 | "exit_code": self.exit_code, |
| 88 | "timed_out": self.timed_out, |
| 89 | } |
| 90 | |
| 91 | |
| 92 | class _HTMLTextParser(HTMLParser): |
nothing calls this directly
no outgoing calls
no test coverage detected