diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-07-05 16:50:30 -0400 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-07-05 16:50:30 -0400 |
commit | 1d560965bf5e03d82c4c353899ee9c7a6bf70a14 (patch) | |
tree | 621340fd0bcb1d5878919a03e548f991be35f6c0 /examples | |
parent | 627d4bda1ac790e34a7b87358defe4b436737292 (diff) | |
download | cmd2-git-1d560965bf5e03d82c4c353899ee9c7a6bf70a14.tar.gz |
Simplifying unit tests for AutoCompleter
Diffstat (limited to 'examples')
-rwxr-xr-x | examples/tab_completion.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/examples/tab_completion.py b/examples/tab_completion.py index 48d7cb05..2830b002 100755 --- a/examples/tab_completion.py +++ b/examples/tab_completion.py @@ -1,6 +1,8 @@ #!/usr/bin/env python # coding=utf-8 -"""A simple example demonstrating how to use flag and index based tab-completion functions +""" +A simple example demonstrating how to use flag and index based tab-completion functions +For argparse-based tab completion, see tab_autocompletion.py """ import argparse |