Decode accumulated crash lines and reset state.
(self)
| 152 | # ------------------------------------------------------------------ |
| 153 | |
| 154 | def _finish_crash(self) -> list[str]: |
| 155 | """Decode accumulated crash lines and reset state.""" |
| 156 | lines = self._decode() |
| 157 | self._in_crash = False |
| 158 | self._crash_lines = [] |
| 159 | self._grace_count = 0 |
| 160 | return lines |
| 161 | |
| 162 | @staticmethod |
| 163 | def _is_crash_start(line: str) -> bool: |
no test coverage detected