Returns: float: the total number of seconds since the start/reset of the timer, excluding the time in between when the timer is paused.
(self)
| 144 | self._paused = False |
| 145 | |
| 146 | def seconds(self): |
| 147 | """ |
| 148 | Returns: |
| 149 | float: the total number of seconds since the start/reset of the timer, excluding the |
| 150 | time in between when the timer is paused. |
| 151 | """ |
| 152 | if self._paused: |
| 153 | self.resume() |
| 154 | self.pause() |
| 155 | return timer() - self._start - self._total_paused |
no test coverage detected