Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions awsshell/wizard.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,10 @@ def __init__(self, session=None, interaction_loader=None,
:class:`awsshell.interaction.InteractionLoader`
:param interaction_loader: (Optional) The InteractionLoader to be used
when converting Interaction models to their corresponding object.

:type error_handler: callable
:param error_handler: (Optional) The error handler to be used when
executing wizards.
"""
self._session = session
if session is None:
Expand Down Expand Up @@ -302,6 +306,10 @@ def __init__(self, env, creator, interaction_loader, wizard_loader,
:param interaction_loader: The Interaction loader to be used when
performing interactions.

:type wizard_loader: :class:`WizardLoader`
:param wizard_loader: The Wizard Loader to be used when a stage needs
to delegate to a sub-wizard.

:type name: str
:param name: A unique identifier for the stage.

Expand Down