(self)
| 37 | return True |
| 38 | |
| 39 | def Undo(self): |
| 40 | pyfalog.debug('Undoing removal of command fit {} for fit {}'.format(self.commandFitID, self.fitID)) |
| 41 | from .add import CalcAddCommandCommand |
| 42 | cmd = CalcAddCommandCommand( |
| 43 | fitID=self.fitID, |
| 44 | commandFitID=self.commandFitID, |
| 45 | state=self.savedState) |
| 46 | return cmd.Do() |
nothing calls this directly
no test coverage detected