diff options
author | kotfu <kotfu@kotfu.net> | 2018-05-23 21:16:17 -0600 |
---|---|---|
committer | kotfu <kotfu@kotfu.net> | 2018-05-23 21:16:17 -0600 |
commit | 6780baa83457f7e99ba3a9c4f6a3c27701326ac5 (patch) | |
tree | c130136619c740645c45326a2ada0fcffa9f65a2 /tests/test_parsing.py | |
parent | 1a70b90f375997751bc7df16b5e3f58c6194c71b (diff) | |
download | cmd2-git-6780baa83457f7e99ba3a9c4f6a3c27701326ac5.tar.gz |
Standardize cmd2 imports in tests and examples
Diffstat (limited to 'tests/test_parsing.py')
-rw-r--r-- | tests/test_parsing.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/test_parsing.py b/tests/test_parsing.py index 7b361b7e..59f9a610 100644 --- a/tests/test_parsing.py +++ b/tests/test_parsing.py @@ -7,9 +7,8 @@ Released under MIT license, see LICENSE file """ import pytest -from cmd2 import cmd2 +import cmd2 from cmd2.parsing import StatementParser - from cmd2 import utils @pytest.fixture |