(self, stepCount: int, title: str, parent=None)
| 677 | finishSignal = pyqtSignal(bool) |
| 678 | |
| 679 | def __init__(self, stepCount: int, title: str, parent=None): |
| 680 | super().__init__(parent) |
| 681 | self._setUpUI() |
| 682 | self._initView(stepCount, title) |
| 683 | self.setNotFinished() |
| 684 | |
| 685 | def setFinished(self): |
| 686 | try: |
nothing calls this directly
no test coverage detected