Docs update for more-hooks

Change-Id: I769d5e0d5e1d3e9b1ae697b84a80d0a3ca1faa36
This commit is contained in:
Dean Troyer 2017-09-16 13:05:19 -05:00
parent 42b169123d
commit 097e0805fa
1 changed files with 2 additions and 4 deletions

View File

@ -46,10 +46,9 @@ class CommandHook(object):
def before(self, parsed_args):
"""Called before the command's take_action() method.
Any return value is ignored.
:param parsed_args: The arguments to the command.
:paramtype parsed_args: argparse.Namespace
:returns: argparse.Namespace
"""
return parsed_args
@ -57,11 +56,10 @@ class CommandHook(object):
def after(self, parsed_args, return_code):
"""Called after the command's take_action() method.
Any return value is ignored.
:param parsed_args: The arguments to the command.
:paramtype parsed_args: argparse.Namespace
:param return_code: The value returned from take_action().
:paramtype return_code: int
:returns: int
"""
return return_code