(self, fitIDs)
| 394 | return [f.ID for f in self.fits] |
| 395 | |
| 396 | def addFitsByIDs(self, fitIDs): |
| 397 | if not fitIDs: |
| 398 | return |
| 399 | self.mainFrame.command.Submit(cmd.GuiAddProjectedFitsCommand( |
| 400 | fitID=self.mainFrame.getActiveFit(), |
| 401 | projectedFitIDs=fitIDs, |
| 402 | amount=1)) |
| 403 | |
| 404 | def getTabExtraText(self): |
| 405 | fitID = self.mainFrame.getActiveFit() |
nothing calls this directly
no test coverage detected