diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2019-06-23 20:38:17 -0400 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2019-06-23 20:38:17 -0400 |
commit | 181cecb217dd73056b72874d225e34528d484de8 (patch) | |
tree | 6780eac90814677ce1fe998521d524373211af7f /tests/conftest.py | |
parent | f2166d89e313f6f0b24ced45f2b31109a0d11a2d (diff) | |
download | cmd2-git-181cecb217dd73056b72874d225e34528d484de8.tar.gz |
Restored a few attributes to be public
Diffstat (limited to 'tests/conftest.py')
-rw-r--r-- | tests/conftest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/conftest.py b/tests/conftest.py index 9af82637..b049dfff 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -168,7 +168,7 @@ def complete_tester(text: str, line: str, begidx: int, endidx: int, app) -> Opti :param endidx: the ending index of the prefix text :param app: the cmd2 app that will run completions :return: The first matched string or None if there are no matches - Matches are stored in app._completion_matches + Matches are stored in app.completion_matches These matches also have been sorted by complete() """ def get_line(): |