(self, other: "TimecodeLike")
| 661 | return self |
| 662 | |
| 663 | def __add__(self, other: "TimecodeLike") -> "FrameTimecode": |
| 664 | to_return = FrameTimecode(timecode=self) |
| 665 | to_return += other |
| 666 | return to_return |
| 667 | |
| 668 | def __isub__(self, other: "TimecodeLike") -> "FrameTimecode": |
| 669 | # Narrow `other`'s internal time once so pyright can track it through the dispatch below. |
nothing calls this directly
no test coverage detected