(self)
| 731 | # need to use relevant property instead. |
| 732 | |
| 733 | def __int__(self) -> int: |
| 734 | if isinstance(self._time, _FrameNumber): |
| 735 | return self._time.value |
| 736 | return self.frame_num |
| 737 | |
| 738 | def __float__(self) -> float: |
| 739 | return self.seconds |
nothing calls this directly
no outgoing calls
no test coverage detected