First step to unregistering a CommandSet, called by ``cmd2.Cmd``. Subclasses can override this to perform any cleanup steps which require their commands being registered in the CLI.
(self)
| 81 | """ |
| 82 | |
| 83 | def on_unregister(self) -> None: |
| 84 | """First step to unregistering a CommandSet, called by ``cmd2.Cmd``. |
| 85 | |
| 86 | Subclasses can override this to perform any cleanup steps which require their commands being registered in the CLI. |
| 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. |
no outgoing calls
no test coverage detected