Undo the command, reversing its effects. Returns: True if successful, False otherwise
(self)
| 37 | |
| 38 | @abstractmethod |
| 39 | def undo(self) -> bool: |
| 40 | """ |
| 41 | Undo the command, reversing its effects. |
| 42 | |
| 43 | Returns: |
| 44 | True if successful, False otherwise |
| 45 | """ |
| 46 | pass |
| 47 | |
| 48 | def get_description(self) -> str: |
| 49 | """Get human-readable description for UI display.""" |
no outgoing calls
no test coverage detected