(n)
| 488 | # Aggregation / reporting |
| 489 | # --------------------------------------------------------------------------- # |
| 490 | def mb(n) -> str: |
| 491 | if not n: |
| 492 | return " -" |
| 493 | return f"{n / (1024 * 1024):6.1f}" |
| 494 | |
| 495 | |
| 496 | def agg(values: list[float]) -> dict: |