(self)
| 91 | return self.deque[-1] |
| 92 | |
| 93 | def __str__(self): |
| 94 | return self.fmt.format( |
| 95 | median=self.median, |
| 96 | avg=self.avg, |
| 97 | global_avg=self.global_avg, |
| 98 | max=self.max, |
| 99 | value=self.value, |
| 100 | ) |
nothing calls this directly
no outgoing calls
no test coverage detected