(self, window_size=50)
| 54 | """ |
| 55 | |
| 56 | def __init__(self, window_size=50): |
| 57 | self._deque = deque(maxlen=window_size) |
| 58 | self._total = 0.0 |
| 59 | self._count = 0 |
| 60 | |
| 61 | def update(self, value): |
| 62 | self._deque.append(value) |
nothing calls this directly
no outgoing calls
no test coverage detected