(self)
| 51 | return True |
| 52 | |
| 53 | def Undo(self): |
| 54 | pyfalog.debug('Undoing addition of fighter {} to fit {}'.format(self.fighterInfo, self.fitID)) |
| 55 | from .localRemove import CalcRemoveLocalFighterCommand |
| 56 | cmd = CalcRemoveLocalFighterCommand(fitID=self.fitID, position=self.position) |
| 57 | cmd.Do() |
| 58 | return True |
nothing calls this directly
no test coverage detected