(self, *args, **kwargs)
| 82 | """Subclass of `.TimerBase` using GTK timer events.""" |
| 83 | |
| 84 | def __init__(self, *args, **kwargs): |
| 85 | self._timer = None |
| 86 | super().__init__(*args, **kwargs) |
| 87 | |
| 88 | def _timer_start(self): |
| 89 | # Need to stop it, otherwise we potentially leak a timer id that will |