Resume the timer.
(self)
| 136 | return self._paused is not False |
| 137 | |
| 138 | def resume(self): |
| 139 | """ |
| 140 | Resume the timer. |
| 141 | """ |
| 142 | assert self._paused is not False |
| 143 | self._total_paused += timer() - self._paused |
| 144 | self._paused = False |
| 145 | |
| 146 | def seconds(self): |
| 147 | """ |
no outgoing calls
no test coverage detected