(self)
| 94 | self.avg = self.sum / (self.count + 1e-5) |
| 95 | |
| 96 | def __str__(self): |
| 97 | fmtstr = "{name} {val" + self.fmt + "} ({avg" + self.fmt + "})" |
| 98 | return fmtstr.format(**self.__dict__) |
| 99 | |
| 100 | def summary(self): |
| 101 | fmtstr = "" |
nothing calls this directly
no outgoing calls
no test coverage detected