(
self, reprlocation_lines: Sequence[Tuple[ReprFileLocation, Sequence[str]]]
)
| 156 | |
| 157 | class ReprFailDoctest(TerminalRepr): |
| 158 | def __init__( |
| 159 | self, reprlocation_lines: Sequence[Tuple[ReprFileLocation, Sequence[str]]] |
| 160 | ) -> None: |
| 161 | self.reprlocation_lines = reprlocation_lines |
| 162 | |
| 163 | def toterminal(self, tw: TerminalWriter) -> None: |
| 164 | for reprlocation, lines in self.reprlocation_lines: |
nothing calls this directly
no outgoing calls
no test coverage detected