(
session,
video_file_id,
archived = False)
| 377 | |
| 378 | @staticmethod |
| 379 | def list( |
| 380 | session, |
| 381 | video_file_id, |
| 382 | archived = False): |
| 383 | |
| 384 | return session.query(Sequence).filter( |
| 385 | Sequence.video_file_id == video_file_id, |
| 386 | Sequence.archived == archived).all() |
| 387 | |
| 388 | |
| 389 | @staticmethod |
no outgoing calls
no test coverage detected