(self, stepCount: int, parent=None)
| 412 | finishSignal = pyqtSignal(bool) |
| 413 | |
| 414 | def __init__(self, stepCount: int, parent=None): |
| 415 | super().__init__(parent) |
| 416 | self._setUpUI() |
| 417 | self._initView(stepCount) |
| 418 | self.setNotFinished() |
| 419 | |
| 420 | def setFinished(self): |
| 421 | self.statusIcon.setFinished() |
nothing calls this directly
no test coverage detected