diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2020-02-21 11:17:44 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-21 11:17:44 -0500 |
commit | fea1bc15f4a53aa72d16c2985377fe3987b6b348 (patch) | |
tree | dcc6eb49cfb5702373a9f0ad4150a83940b271ad /cmd2/utils.py | |
parent | 22de85832e877b5b360eeacd4b71e00f69bf00e1 (diff) | |
parent | ce87cb44df8cf2d61e6e37ab06c943983b6f23bd (diff) | |
download | cmd2-git-fea1bc15f4a53aa72d16c2985377fe3987b6b348.tar.gz |
Merge pull request #897 from python-cmd2/no_suppress_hint
Remove tab hint suppression from do_set
Diffstat (limited to 'cmd2/utils.py')
-rw-r--r-- | cmd2/utils.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd2/utils.py b/cmd2/utils.py index 971a22ce..237a6d1e 100644 --- a/cmd2/utils.py +++ b/cmd2/utils.py @@ -129,8 +129,8 @@ class Settable: :param choices: iterable of accepted values :param choices_function: function that provides choices for this argument :param choices_method: cmd2-app method that provides choices for this argument (See note below) - :param completer_function: tab-completion function that provides choices for this argument - :param completer_method: cmd2-app tab-completion method that provides choices + :param completer_function: tab completion function that provides choices for this argument + :param completer_method: cmd2-app tab completion method that provides choices for this argument (See note below) Note: |