(self, tw: TerminalWriter)
| 1008 | self.reprcrash = self.chain[-1][1] |
| 1009 | |
| 1010 | def toterminal(self, tw: TerminalWriter) -> None: |
| 1011 | for element in self.chain: |
| 1012 | element[0].toterminal(tw) |
| 1013 | if element[2] is not None: |
| 1014 | tw.line("") |
| 1015 | tw.line(element[2], yellow=True) |
| 1016 | super().toterminal(tw) |
| 1017 | |
| 1018 | |
| 1019 | @attr.s(eq=False, auto_attribs=True) |
nothing calls this directly
no test coverage detected