(self, fitID, itemIDs)
| 13 | class GuiRemoveCargosCommand(wx.Command): |
| 14 | |
| 15 | def __init__(self, fitID, itemIDs): |
| 16 | wx.Command.__init__(self, True, 'Remove Cargos') |
| 17 | self.internalHistory = InternalCommandHistory() |
| 18 | self.fitID = fitID |
| 19 | self.itemIDs = itemIDs |
| 20 | |
| 21 | def Do(self): |
| 22 | sMkt = Market.getInstance() |
nothing calls this directly
no test coverage detected