(self)
| 1001 | chain: Sequence[Tuple["ReprTraceback", Optional["ReprFileLocation"], Optional[str]]] |
| 1002 | |
| 1003 | def __attrs_post_init__(self) -> None: |
| 1004 | super().__attrs_post_init__() |
| 1005 | # reprcrash and reprtraceback of the outermost (the newest) exception |
| 1006 | # in the chain. |
| 1007 | self.reprtraceback = self.chain[-1][0] |
| 1008 | self.reprcrash = self.chain[-1][1] |
| 1009 | |
| 1010 | def toterminal(self, tw: TerminalWriter) -> None: |
| 1011 | for element in self.chain: |
nothing calls this directly
no test coverage detected