(self)
| 729 | return False |
| 730 | |
| 731 | def check_cutout(self): |
| 732 | if self.cutout.get_time() <= self.cutin.get_time(): |
| 733 | pos, dur = self.player.query_position() |
| 734 | self.cutout.set_time(dur) |
| 735 | |
| 736 | def check_cutin(self): |
| 737 | if self.cutin.get_time() >= self.cutout.get_time(): |
nothing calls this directly
no test coverage detected