summaryrefslogtreecommitdiff
path: root/examples/tab_completion.py
diff options
context:
space:
mode:
authorKevin Van Brunt <kmvanbrunt@gmail.com>2018-04-15 01:06:29 -0400
committerKevin Van Brunt <kmvanbrunt@gmail.com>2018-04-15 01:06:29 -0400
commit3140fe01ea00a50bdb48b17bca0c5dc513c2ca70 (patch)
tree55fdad89410e42323db0d6aa96e7f575aa9a077c /examples/tab_completion.py
parent4233570973e12b0a850415e05aee9912cf3e2cd3 (diff)
downloadcmd2-git-3140fe01ea00a50bdb48b17bca0c5dc513c2ca70.tar.gz
Updated comments and examples
Diffstat (limited to 'examples/tab_completion.py')
-rwxr-xr-xexamples/tab_completion.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/tab_completion.py b/examples/tab_completion.py
index 93d6c0ef..1419b294 100755
--- a/examples/tab_completion.py
+++ b/examples/tab_completion.py
@@ -8,8 +8,8 @@ import cmd2
from cmd2 import with_argparser, with_argument_list
# List of strings used with flag and index based completion functions
-food_item_strs = ['Pizza', 'Hamburger', 'Ham', 'Potato']
-sport_item_strs = ['Bat', 'Basket', 'Basketball', 'Football']
+food_item_strs = ['Pizza', 'Ham', 'Ham Sandwich', 'Potato']
+sport_item_strs = ['Bat', 'Basket', 'Basketball', 'Football', 'Space Ball']
class TabCompleteExample(cmd2.Cmd):