diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-11-16 13:46:01 -0500 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-11-16 13:46:01 -0500 |
commit | 027f7d8f04bbe14e0b6929154cc205bb4acdd6d7 (patch) | |
tree | f341b39b6e4c473958f3959f5f1289a548a399a8 /cmd2/cmd2.py | |
parent | 42021358eb9afc5fc1920ba6aea63fc88118cc74 (diff) | |
download | cmd2-git-027f7d8f04bbe14e0b6929154cc205bb4acdd6d7.tar.gz |
Updating unit tests
Diffstat (limited to 'cmd2/cmd2.py')
-rw-r--r-- | cmd2/cmd2.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd2/cmd2.py b/cmd2/cmd2.py index f8eb6bee..faa96924 100644 --- a/cmd2/cmd2.py +++ b/cmd2/cmd2.py @@ -1993,7 +1993,7 @@ class Cmd(cmd.Cmd): # Set apply_style to False so default_error's style is not overridden self.perror(err_msg, apply_style=False) - def read_input(self, prompt: str, allow_completion: bool = False) -> str: + def read_input(self, prompt: str, *, allow_completion: bool = False) -> str: """ Read input from appropriate stdin value. Also allows you to disable tab completion while input is being read. |