Convert a structured traceback (a list) to a string.
(self, stb: list[str])
| 522 | self._theme_name = "nocolor" |
| 523 | |
| 524 | def stb2text(self, stb: list[str]) -> str: |
| 525 | """Convert a structured traceback (a list) to a string.""" |
| 526 | return "\n".join(stb) |
| 527 | |
| 528 | def text( |
| 529 | self, |
no outgoing calls
no test coverage detected