MCPcopy Index your code
hub / github.com/aws/aws-cli / _run_wizard

Method _run_wizard

awscli/customizations/wizard/commands.py:108–119  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

106 )
107
108 def _run_wizard(self):
109 loaded = self._loader.load_wizard(
110 self._parent_command, self._wizard_name
111 )
112 version = loaded.get('version')
113 runner = self._get_runner()
114 if version in runner:
115 runner[version].run(loaded)
116 else:
117 raise ParamValidationError(
118 f'Definition file has unsupported version {version} '
119 )
120
121 def create_help_command(self):
122 return BasicHelp(

Callers 2

_run_mainMethod · 0.95
_run_mainMethod · 0.45

Calls 4

_get_runnerMethod · 0.95
load_wizardMethod · 0.80
runMethod · 0.45

Tested by

no test coverage detected