2nd step to unregistering, called by ``cmd2.Cmd`` after a CommandSet is unregistered and all its commands removed. Subclasses can override this to perform remaining cleanup steps.
(self)
| 87 | """ |
| 88 | |
| 89 | def on_unregistered(self) -> None: |
| 90 | """2nd step to unregistering, called by ``cmd2.Cmd`` after a CommandSet is unregistered and all its commands removed. |
| 91 | |
| 92 | Subclasses can override this to perform remaining cleanup steps. |
| 93 | """ |
| 94 | self._cmd_internal = None |
| 95 | |
| 96 | @property |
| 97 | def settable_prefix(self) -> str: |
no outgoing calls
no test coverage detected