(self)
| 45 | return self._getTime() / self._getCycleQuantity() |
| 46 | |
| 47 | def iterCycles(self): |
| 48 | i = 0 |
| 49 | while i < self.quantity: |
| 50 | for cycleInfo in self.sequence: |
| 51 | for cycleTime, inactiveTime, isInactivityReload in cycleInfo.iterCycles(): |
| 52 | yield cycleTime, inactiveTime, isInactivityReload |
| 53 | i += 1 |
| 54 | |
| 55 | def _getCycleQuantity(self): |
| 56 | quantity = 0 |
nothing calls this directly
no test coverage detected