(self)
| 195 | super().__init__(*args, **kwargs) |
| 196 | |
| 197 | def __del__(self): |
| 198 | # The check for deletedness is needed to avoid an error at animation |
| 199 | # shutdown with PySide2. |
| 200 | if not _isdeleted(self._timer): |
| 201 | self._timer_stop() |
| 202 | |
| 203 | def _timer_set_single_shot(self): |
| 204 | self._timer.setSingleShot(self._single) |
nothing calls this directly
no test coverage detected