(self, fitID, itemID)
| 12 | class GuiAddLocalModuleCommand(wx.Command): |
| 13 | |
| 14 | def __init__(self, fitID, itemID): |
| 15 | wx.Command.__init__(self, True, 'Add Local Module') |
| 16 | self.internalHistory = InternalCommandHistory() |
| 17 | self.fitID = fitID |
| 18 | self.itemID = itemID |
| 19 | self.savedRemovedDummies = None |
| 20 | |
| 21 | def Do(self): |
| 22 | cmd = CalcAddLocalModuleCommand(fitID=self.fitID, newModInfo=ModuleInfo(itemID=self.itemID)) |
nothing calls this directly
no test coverage detected