(self)
| 117 | return snapshot |
| 118 | |
| 119 | def __next__(self): |
| 120 | if self.t < self.times: |
| 121 | snapshot = self[self.t] |
| 122 | self.t = self.t + 1 |
| 123 | return snapshot |
| 124 | else: |
| 125 | self.t = 0 |
| 126 | raise StopIteration |
| 127 | |
| 128 | def __iter__(self): |
| 129 | self.t = 0 |
nothing calls this directly
no outgoing calls
no test coverage detected