(self, fitID, itemID)
| 12 | class GuiAddBoosterCommand(wx.Command): |
| 13 | |
| 14 | def __init__(self, fitID, itemID): |
| 15 | wx.Command.__init__(self, True, 'Add Booster') |
| 16 | self.internalHistory = InternalCommandHistory() |
| 17 | self.fitID = fitID |
| 18 | self.itemID = itemID |
| 19 | |
| 20 | def Do(self): |
| 21 | cmd = CalcAddBoosterCommand(fitID=self.fitID, boosterInfo=BoosterInfo(itemID=self.itemID)) |
nothing calls this directly
no test coverage detected