(self, other: "TimecodeLike")
| 723 | return self |
| 724 | |
| 725 | def __sub__(self, other: "TimecodeLike") -> "FrameTimecode": |
| 726 | to_return = FrameTimecode(timecode=self) |
| 727 | to_return -= other |
| 728 | return to_return |
| 729 | |
| 730 | # TODO(v1.0): __int__ and __float__ should be removed. Mark as deprecated, and indicate |
| 731 | # need to use relevant property instead. |
nothing calls this directly
no test coverage detected