summaryrefslogtreecommitdiff
path: root/cmd2/argparse_custom.py
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2020-04-20 21:56:19 -0400
committerTodd Leonhardt <todd.leonhardt@gmail.com>2020-04-20 21:56:19 -0400
commit0ddf61a2b8640d38b182be9100f35350cb2c96f8 (patch)
tree24d36dae7d573708b226c7808368205076811147 /cmd2/argparse_custom.py
parente23e010f013b7384cb79450258778bc63d64832a (diff)
downloadcmd2-git-0ddf61a2b8640d38b182be9100f35350cb2c96f8.tar.gz
Consistently use :raises: instead of :raises (make sure there is a trailing colon)
Diffstat (limited to 'cmd2/argparse_custom.py')
-rw-r--r--cmd2/argparse_custom.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd2/argparse_custom.py b/cmd2/argparse_custom.py
index d6833673..c24d8d9a 100644
--- a/cmd2/argparse_custom.py
+++ b/cmd2/argparse_custom.py
@@ -387,7 +387,7 @@ def _add_argument_wrapper(self, *args,
See the header of this file for more information
:return: the created argument action
- :raises ValueError on incorrect parameter usage
+ :raises: ValueError on incorrect parameter usage
"""
# Verify consistent use of arguments
choices_callables = [choices_function, choices_method, completer_function, completer_method]