(self)
| 985 | reprtraceback: "ReprTraceback" |
| 986 | |
| 987 | def __attrs_post_init__(self) -> None: |
| 988 | self.sections: List[Tuple[str, str, str]] = [] |
| 989 | |
| 990 | def addsection(self, name: str, content: str, sep: str = "-") -> None: |
| 991 | self.sections.append((name, content, sep)) |