This function is called to allow post command cleanup.
(self, cmd: Command)
| 622 | self.console.move_cursor(*self.cxy) |
| 623 | |
| 624 | def after_command(self, cmd: Command) -> None: |
| 625 | """This function is called to allow post command cleanup.""" |
| 626 | if getattr(cmd, "kills_digit_arg", True): |
| 627 | if self.arg is not None: |
| 628 | self.dirty = True |
| 629 | self.arg = None |
| 630 | |
| 631 | def prepare(self) -> None: |
| 632 | """Get ready to run. Call restore when finished. You must not |