Get average time between cycles.
(self)
| 41 | |
| 42 | @property |
| 43 | def averageTime(self): |
| 44 | """Get average time between cycles.""" |
| 45 | return self._getTime() / self._getCycleQuantity() |
| 46 | |
| 47 | def iterCycles(self): |
| 48 | i = 0 |
nothing calls this directly
no test coverage detected