diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2020-02-17 14:13:28 -0500 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2020-02-17 14:13:28 -0500 |
commit | d80b27f8e259ffe3b14cef88e8ed9cde350ba397 (patch) | |
tree | e728a25def93009c8872a6e04186e34e119a37ba /tests | |
parent | 878601bc07e5298d50fbf1bd6a8fc2062fef5ed4 (diff) | |
download | cmd2-git-d80b27f8e259ffe3b14cef88e8ed9cde350ba397.tar.gz |
Made CompletionError exception available to non-argparse tab completion
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_argparse_completer.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_argparse_completer.py b/tests/test_argparse_completer.py index 0eb3892f..c0cb8b4a 100644 --- a/tests/test_argparse_completer.py +++ b/tests/test_argparse_completer.py @@ -9,8 +9,8 @@ from typing import List import pytest import cmd2 -from cmd2 import with_argparser, Cmd2ArgumentParser, CompletionError, CompletionItem -from cmd2.utils import StdSim, basic_complete +from cmd2 import with_argparser, Cmd2ArgumentParser, CompletionItem +from cmd2.utils import CompletionError, StdSim, basic_complete from .conftest import run_cmd, complete_tester # Lists used in our tests (there is a mix of sorted and unsorted on purpose) |