(fps: Fraction, frames)
| 245 | |
| 246 | |
| 247 | def _fake_scenes(fps: Fraction, frames): |
| 248 | return [(FrameTimecode(start, fps=fps), FrameTimecode(end, fps=fps)) for start, end in frames] |
| 249 | |
| 250 | |
| 251 | def test_write_scene_list_edl(tmp_path: Path): |
no test coverage detected