(
specs: list[MetricSpec],
exposure_counts: dict[str, int],
metric_stats: dict[int, dict[str, VariantStats]],
)
| 581 | |
| 582 | |
| 583 | def _aggregates( |
| 584 | specs: list[MetricSpec], |
| 585 | exposure_counts: dict[str, int], |
| 586 | metric_stats: dict[int, dict[str, VariantStats]], |
| 587 | ) -> ResultsAggregates: |
| 588 | return ResultsAggregates( |
| 589 | specs=specs, |
| 590 | exposure_counts=exposure_counts, |
| 591 | metric_stats=metric_stats, |
| 592 | ) |
| 593 | |
| 594 | |
| 595 | def _result_columns(metric_count: int) -> list[tuple[str, str]]: |
no test coverage detected
searching dependent graphs…