(self)
| 469 | self.avg = self.sum / self.count |
| 470 | |
| 471 | def __str__(self): |
| 472 | fmtstr = '{name} {val' + self.fmt + '} ({avg' + self.fmt + '})' |
| 473 | return fmtstr.format(**self.__dict__) |
| 474 | |
| 475 | def summary(self): |
| 476 | fmtstr = '' |
nothing calls this directly
no outgoing calls
no test coverage detected