(self, commandFits)
| 218 | self.removeCommandFits([commandFit]) |
| 219 | |
| 220 | def removeCommandFits(self, commandFits): |
| 221 | fitID = self.mainFrame.getActiveFit() |
| 222 | commandFitIDs = [] |
| 223 | for commandFit in commandFits: |
| 224 | if commandFit in self.fits: |
| 225 | commandFitIDs.append(commandFit.ID) |
| 226 | self.mainFrame.command.Submit(cmd.GuiRemoveCommandFitsCommand(fitID=fitID, commandFitIDs=commandFitIDs)) |
| 227 | |
| 228 | def getSelectedCommandFits(self): |
| 229 | commandFits = [] |
no test coverage detected