| 1062 | |
| 1063 | @attr.s(eq=False, auto_attribs=True) |
| 1064 | class ReprEntryNative(TerminalRepr): |
| 1065 | lines: Sequence[str] |
| 1066 | |
| 1067 | style: ClassVar["_TracebackStyle"] = "native" |
| 1068 | |
| 1069 | def toterminal(self, tw: TerminalWriter) -> None: |
| 1070 | tw.write("".join(self.lines)) |
| 1071 | |
| 1072 | |
| 1073 | @attr.s(eq=False, auto_attribs=True) |
no outgoing calls
no test coverage detected