(self, reports: Reports, output_dir: str)
| 161 | |
| 162 | class LineCountReporter(AbstractReporter): |
| 163 | def __init__(self, reports: Reports, output_dir: str) -> None: |
| 164 | super().__init__(reports, output_dir) |
| 165 | self.counts: dict[str, tuple[int, int, int, int]] = {} |
| 166 | |
| 167 | def on_file( |
| 168 | self, |