(self, reports: Reports, output_dir: str)
| 217 | """Report frequencies of different kinds of Any types.""" |
| 218 | |
| 219 | def __init__(self, reports: Reports, output_dir: str) -> None: |
| 220 | super().__init__(reports, output_dir) |
| 221 | self.counts: dict[str, tuple[int, int]] = {} |
| 222 | self.any_types_counter: dict[str, collections.Counter[int]] = {} |
| 223 | |
| 224 | def on_file( |
| 225 | self, |