| 1018 | |
| 1019 | @attr.s(eq=False, auto_attribs=True) |
| 1020 | class ReprExceptionInfo(ExceptionRepr): |
| 1021 | reprtraceback: "ReprTraceback" |
| 1022 | reprcrash: "ReprFileLocation" |
| 1023 | |
| 1024 | def toterminal(self, tw: TerminalWriter) -> None: |
| 1025 | self.reprtraceback.toterminal(tw) |
| 1026 | super().toterminal(tw) |
| 1027 | |
| 1028 | |
| 1029 | @attr.s(eq=False, auto_attribs=True) |
no outgoing calls
no test coverage detected