(self, stepCount: int, title: str, parent=None)
| 594 | finishSignal = pyqtSignal(bool) |
| 595 | |
| 596 | def __init__(self, stepCount: int, title: str, parent=None): |
| 597 | super().__init__(parent) |
| 598 | self._setUpUI() |
| 599 | self._initView(stepCount, title) |
| 600 | self.setNotFinished() |
| 601 | |
| 602 | def setFinished(self): |
| 603 | self.statusIcon.setFinished() |
nothing calls this directly
no test coverage detected