(self, *args, **kwargs)
| 22 | |
| 23 | class BackingWidget(QWidget): |
| 24 | def __init__(self, *args, **kwargs): |
| 25 | super().__init__(*args, **kwargs) |
| 26 | self._showed = False |
| 27 | self._thread = BackingPaint(self) |
| 28 | self.resize(800, 600) |
| 29 | |
| 30 | def closeEvent(self, event): |
| 31 | if self._thread: |
nothing calls this directly
no test coverage detected