(self, value: int | float | str)
| 78 | Stores value in original representation.""" |
| 79 | |
| 80 | def __init__(self, value: int | float | str): |
| 81 | # Ensure value is a valid timecode. |
| 82 | FrameTimecode(timecode=value, fps=100.0) |
| 83 | self._value = value |
| 84 | |
| 85 | @property |
| 86 | def value(self) -> int | float | str: |
nothing calls this directly
no test coverage detected