Fixes re: zognia's testing #2

Merged
skeh merged 11 commits from feat/zogpog into main 2025-01-24 08:28:14 +00:00
Showing only changes of commit 23dda2fe90 - Show all commits

View file

@ -31,7 +31,7 @@ class Cue:
def is_obsolete(self):
if self.repeat:
return False
if self._next <= maya.now():
if self._next >= maya.now():
return False
return True