Execute the command. Returns: True if successful, False otherwise
(self)
| 27 | |
| 28 | @abstractmethod |
| 29 | def execute(self) -> bool: |
| 30 | """ |
| 31 | Execute the command. |
| 32 | |
| 33 | Returns: |
| 34 | True if successful, False otherwise |
| 35 | """ |
| 36 | pass |
| 37 | |
| 38 | @abstractmethod |
| 39 | def undo(self) -> bool: |
no outgoing calls
no test coverage detected