| 560 | |
| 561 | |
| 562 | class MainWindow(QtWidgets.QMainWindow): |
| 563 | closing = QtCore.Signal() |
| 564 | |
| 565 | def closeEvent(self, event): |
| 566 | self.closing.emit() |
| 567 | super().closeEvent(event) |
| 568 | |
| 569 | |
| 570 | class FigureManagerQT(FigureManagerBase): |
no outgoing calls
no test coverage detected
searching dependent graphs…