(self, **kwargs: Any)
| 136 | return template.format(command, exited, stdout, stderr) |
| 137 | |
| 138 | def _repr(self, **kwargs: Any) -> str: |
| 139 | kwargs.setdefault("exited", self.result.exited) |
| 140 | return super()._repr(**kwargs) |
| 141 | |
| 142 | |
| 143 | class CommandTimedOut(Failure): |
nothing calls this directly
no test coverage detected