(self, fitID, itemID)
| 12 | class GuiAddLocalFighterCommand(wx.Command): |
| 13 | |
| 14 | def __init__(self, fitID, itemID): |
| 15 | wx.Command.__init__(self, True, 'Add Local Fighter') |
| 16 | self.internalHistory = InternalCommandHistory() |
| 17 | self.fitID = fitID |
| 18 | self.itemID = itemID |
| 19 | |
| 20 | def Do(self): |
| 21 | cmd = CalcAddLocalFighterCommand(fitID=self.fitID, fighterInfo=FighterInfo(itemID=self.itemID)) |
nothing calls this directly
no test coverage detected