(counter: Counter[str], amount: int | None = None)
| 76 | |
| 77 | |
| 78 | def report_counter(counter: Counter[str], amount: int | None = None) -> None: |
| 79 | for name, count in counter.most_common(amount): |
| 80 | print(f" {count: <8} {name}") |
| 81 | print() |
| 82 | |
| 83 | |
| 84 | def report_most_common(chunks: list[JsonDict], amount: int | None = None) -> None: |
no test coverage detected
searching dependent graphs…