| 1169 | |
| 1170 | @attr.s(eq=False, auto_attribs=True) |
| 1171 | class ReprLocals(TerminalRepr): |
| 1172 | lines: Sequence[str] |
| 1173 | |
| 1174 | def toterminal(self, tw: TerminalWriter, indent="") -> None: |
| 1175 | for line in self.lines: |
| 1176 | tw.line(indent + line) |
| 1177 | |
| 1178 | |
| 1179 | @attr.s(eq=False, auto_attribs=True) |
no outgoing calls
no test coverage detected