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