(self, fitID, cargoInfo)
| 11 | class CalcRemoveCargoCommand(wx.Command): |
| 12 | |
| 13 | def __init__(self, fitID, cargoInfo): |
| 14 | wx.Command.__init__(self, True, 'Remove Cargo') |
| 15 | self.fitID = fitID |
| 16 | self.cargoInfo = cargoInfo |
| 17 | self.savedRemovedAmount = None |
| 18 | |
| 19 | def Do(self): |
| 20 | pyfalog.debug('Doing removal of cargo {} to fit {}'.format(self.cargoInfo, self.fitID)) |
nothing calls this directly
no outgoing calls
no test coverage detected