One measured metric, in the unit named by ``unit``.
| 34 | |
| 35 | @dataclass(frozen=True) |
| 36 | class Sample: |
| 37 | """One measured metric, in the unit named by ``unit``.""" |
| 38 | |
| 39 | name: str |
| 40 | median: float |
| 41 | p95: float |
| 42 | unit: str |
| 43 | |
| 44 | |
| 45 | def main() -> None: |
no outgoing calls
no test coverage detected