(self, fitID, fighterInfo, position=None, ignoreRestrictions=False)
| 10 | class CalcAddLocalFighterCommand(wx.Command): |
| 11 | |
| 12 | def __init__(self, fitID, fighterInfo, position=None, ignoreRestrictions=False): |
| 13 | wx.Command.__init__(self, True, 'Add Fighter') |
| 14 | self.fitID = fitID |
| 15 | self.fighterInfo = fighterInfo |
| 16 | self.position = position |
| 17 | self.ignoreRestrictions = ignoreRestrictions |
| 18 | |
| 19 | def Do(self): |
| 20 | pyfalog.debug('Doing addition of fighter {} to fit {}'.format(self.fighterInfo, self.fitID)) |
nothing calls this directly
no outgoing calls
no test coverage detected