(self, fits)
| 181 | self.updateView() |
| 182 | |
| 183 | def removeFits(self, fits): |
| 184 | for fit in fits: |
| 185 | if fit not in self.fits: |
| 186 | continue |
| 187 | self.fits.remove(fit) |
| 188 | self.updateView() |
| 189 | |
| 190 | def GetSelectedFits(self): |
| 191 | fits = [] |
no test coverage detected