(self)
| 1050 | self.autoplayTimer.start(1) |
| 1051 | |
| 1052 | def stopAutoplayCountdown(self): |
| 1053 | if self.autoplayTimer.running: |
| 1054 | self.autoplayTimer.stop() |
| 1055 | self.autoplayTimeLeft = constants.AUTOPLAY_DELAY |
| 1056 | |
| 1057 | def autoplayCountdown(self): |
| 1058 | if not self.autoplayConditionsMet(): |
no test coverage detected