(self, fitID, projectedFitIDs, amount)
| 11 | class GuiAddProjectedFitsCommand(wx.Command): |
| 12 | |
| 13 | def __init__(self, fitID, projectedFitIDs, amount): |
| 14 | wx.Command.__init__(self, True, 'Add Projected Fits') |
| 15 | self.internalHistory = InternalCommandHistory() |
| 16 | self.fitID = fitID |
| 17 | self.projectedFitIDs = projectedFitIDs |
| 18 | self.amount = amount |
| 19 | |
| 20 | def Do(self): |
| 21 | results = [] |
nothing calls this directly
no test coverage detected