From 90e89419d67b22dc2fbfd07a2b8b432e649c3824 Mon Sep 17 00:00:00 2001 From: Jordan Guymon Date: Wed, 31 Aug 2016 14:19:19 -0700 Subject: [PATCH] Improve docstrings --- awsshell/wizard.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/awsshell/wizard.py b/awsshell/wizard.py index fdbaa78..7fd1572 100644 --- a/awsshell/wizard.py +++ b/awsshell/wizard.py @@ -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: @@ -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.