(self, parsed_args, parsed_globals)
| 94 | return [name for name in wizards if not name.startswith('_')] |
| 95 | |
| 96 | def _run_main(self, parsed_args, parsed_globals): |
| 97 | if self._wizard_exists(): |
| 98 | self._run_wizard() |
| 99 | return 0 |
| 100 | else: |
| 101 | self._raise_usage_error() |
| 102 | |
| 103 | def _wizard_exists(self): |
| 104 | return self._loader.wizard_exists( |
nothing calls this directly
no test coverage detected