(self, widths)
| 135 | fmtN(self.max, widths.max), fmtS(self.unit_string())) |
| 136 | |
| 137 | def result(self, widths): |
| 138 | return format_line(self.size(), self.key, fmt(self.average), |
| 139 | fmt(self.stddev()), fmt(self.min), |
| 140 | fmt(self.max), self.unit_string(), |
| 141 | widths) |
| 142 | |
| 143 | def unit_string(self): |
| 144 | if not self.unit: |
no test coverage detected