(self, fit)
| 237 | |
| 238 | # Context menu handlers |
| 239 | def addFit(self, fit): |
| 240 | if fit is None: |
| 241 | return |
| 242 | self.mainFrame.command.Submit(cmd.GuiAddCommandFitsCommand( |
| 243 | fitID=self.mainFrame.getActiveFit(), |
| 244 | commandFitIDs=[fit.ID])) |
| 245 | |
| 246 | def getExistingFitIDs(self): |
| 247 | return [f.ID for f in self.fits] |
nothing calls this directly
no test coverage detected