summaryrefslogtreecommitdiff
path: root/cmd2/cmd2.py
diff options
context:
space:
mode:
authorKevin Van Brunt <kmvanbrunt@gmail.com>2019-11-16 13:46:01 -0500
committerKevin Van Brunt <kmvanbrunt@gmail.com>2019-11-16 13:46:01 -0500
commit027f7d8f04bbe14e0b6929154cc205bb4acdd6d7 (patch)
treef341b39b6e4c473958f3959f5f1289a548a399a8 /cmd2/cmd2.py
parent42021358eb9afc5fc1920ba6aea63fc88118cc74 (diff)
downloadcmd2-git-027f7d8f04bbe14e0b6929154cc205bb4acdd6d7.tar.gz
Updating unit tests
Diffstat (limited to 'cmd2/cmd2.py')
-rw-r--r--cmd2/cmd2.py2
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.