(self)
| 119 | self.stopRunning = True |
| 120 | |
| 121 | def run(self): |
| 122 | # wait 1 second just in case a lot of modifications get made |
| 123 | if self.stopRunning: |
| 124 | return |
| 125 | |
| 126 | for fit in self.fits: |
| 127 | time.sleep(1) |
| 128 | e = FitSelected(fitID=fit) |
| 129 | wx.PostEvent(self.mainFrame, e) |
nothing calls this directly
no outgoing calls
no test coverage detected