Return to main module
(self, args)
| 75 | |
| 76 | |
| 77 | def do_back(self, args): |
| 78 | """Return to main module |
| 79 | """ |
| 80 | if len(self._commands) > 0: |
| 81 | command = self._commands.pop() |
| 82 | if hasattr(command["command"],"close_connection"): |
| 83 | command["command"].close_connection() |
| 84 | |
| 85 | self.unregister_command_set(command["command"]) |
| 86 | |
| 87 | @with_argparser(use_parser) |
| 88 | def do_use(self, arg): |
no test coverage detected