(self)
| 45 | return make_table([(str(k), str(v)) for k, v in formatted_dict.items()], width=_STATISTICS_TABLE_WIDTH) |
| 46 | |
| 47 | def to_dict(self) -> dict[str, float | int | list[int]]: |
| 48 | return {k: v.total_seconds() if isinstance(v, timedelta) else v for k, v in asdict(self).items()} |
| 49 | |
| 50 | @override |
| 51 | def __str__(self) -> str: |