Check if command has been undone.
(self)
| 93 | return self._executed |
| 94 | |
| 95 | def is_undone(self) -> bool: |
| 96 | """Check if command has been undone.""" |
| 97 | return self._undone |
| 98 | |
| 99 | def _mark_executed(self): |
| 100 | """Mark command as executed (internal use).""" |
no outgoing calls