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