Return the number of seconds in the Duration.
(self)
| 39 | return Duration(self._frame, -self._seconds) |
| 40 | |
| 41 | def seconds(self): |
| 42 | """Return the number of seconds in the Duration.""" |
| 43 | return self._seconds |
| 44 | |
| 45 | def __bool__(self): |
| 46 | return self._seconds != 0 |
no outgoing calls
no test coverage detected