Simon King

Results 1 comments of Simon King

In my code I've monkeypatched `RedBeatSchedulerEntry` with this: ```python def due_at(self): # never run => due now if self.last_run_at is None: return self._default_now() delta = self.schedule.remaining_estimate(self.last_run_at) # if no delta,...