(self, fitID, commandFitID, state=None)
| 11 | class CalcAddCommandCommand(wx.Command): |
| 12 | |
| 13 | def __init__(self, fitID, commandFitID, state=None): |
| 14 | wx.Command.__init__(self, True, 'Add Command Fit') |
| 15 | self.fitID = fitID |
| 16 | self.commandFitID = commandFitID |
| 17 | self.state = state |
| 18 | |
| 19 | def Do(self): |
| 20 | pyfalog.debug('Doing addition of command fit {} for fit {}'.format(self.commandFitID, self.fitID)) |
nothing calls this directly
no outgoing calls
no test coverage detected