(self, fits, callback)
| 103 | class OpenFitsThread(threading.Thread): |
| 104 | |
| 105 | def __init__(self, fits, callback): |
| 106 | threading.Thread.__init__(self) |
| 107 | self.name = "LoadingOpenFits" |
| 108 | self.mainFrame = MainFrame.getInstance() |
| 109 | self.callback = callback |
| 110 | self.fits = fits |
| 111 | self.running = True |
| 112 | self.start() |
| 113 | |
| 114 | def run(self): |
| 115 | # `startup` tells FitSpawner that we are loading fits are startup, and |
nothing calls this directly
no test coverage detected