(self, *args, **kwargs)
| 55 | """Subclass of `.TimerBase` using wx.Timer events.""" |
| 56 | |
| 57 | def __init__(self, *args, **kwargs): |
| 58 | self._timer = wx.Timer() |
| 59 | self._timer.Notify = self._on_timer |
| 60 | super().__init__(*args, **kwargs) |
| 61 | |
| 62 | def _timer_start(self): |
| 63 | self._timer.Start(self._interval, self._single) |