(self)
| 203 | return pair_counts |
| 204 | |
| 205 | def get_total_execution_count(self) -> int: |
| 206 | return sum(x.get("execution_count", 0) for x in self._data.values()) |
| 207 | |
| 208 | def get_execution_counts(self) -> dict[str, tuple[int, int]]: |
| 209 | counts = {} |
no test coverage detected