Code: Select all
../listeners/tick/repeat.py
line 224-225:
Syntax: Select all
if (self.remaining and self._limit and
self.status is TickRepeatStatus.RUNNING):
Syntax: Select all
if (self.remaining <= 0 and self._limit and
self.status is TickRepeatStatus.RUNNING):
Since it's currently stopping the repeat if there are still loops remaining, which is the exact opposite of what we want.