(stats: Stats)
| 1128 | |
| 1129 | def object_stats_section() -> Section: |
| 1130 | def calc_object_stats_table(stats: Stats) -> Rows: |
| 1131 | object_stats = stats.get_object_stats() |
| 1132 | return [ |
| 1133 | (label, Count(value), Ratio(value, den)) |
| 1134 | for label, (value, den) in object_stats.items() |
| 1135 | ] |
| 1136 | |
| 1137 | return Section( |
| 1138 | "Object stats", |
nothing calls this directly
no test coverage detected
searching dependent graphs…