(self, fitID, itemIDs, newItemID)
| 13 | class GuiChangeCargoMetasCommand(wx.Command): |
| 14 | |
| 15 | def __init__(self, fitID, itemIDs, newItemID): |
| 16 | wx.Command.__init__(self, True, 'Change Cargo Metas') |
| 17 | self.internalHistory = InternalCommandHistory() |
| 18 | self.fitID = fitID |
| 19 | self.itemIDs = itemIDs |
| 20 | self.newItemID = newItemID |
| 21 | |
| 22 | def Do(self): |
| 23 | sFit = Fit.getInstance() |
nothing calls this directly
no test coverage detected