(self)
| 60 | class Scanner(QtCore.QObject): |
| 61 | |
| 62 | def scan(self): |
| 63 | # Call the scan frequency |
| 64 | scan_frequency(inst, start.value() * Hz, stop.value() * Hz, |
| 65 | step.value() * Hz, wait.value() * sec) |
| 66 | # When it finishes, set the progress to 100% |
| 67 | progress.setValue(100) |
| 68 | |
| 69 | thread = QtCore.QThread() |
| 70 | scanner = Scanner() |
nothing calls this directly
no test coverage detected