diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2020-06-17 21:09:43 -0400 |
---|---|---|
committer | anselor <anselor@gmail.com> | 2020-08-04 13:38:08 -0400 |
commit | 7eba947dab35716fc59f88bc7b17fdae0de1d1a3 (patch) | |
tree | e08ffb253a6b50c038c5050bb9633b1010680797 /tests | |
parent | 30d15da7dc90da0dde5072e23f16784e9b94d43d (diff) | |
download | cmd2-git-7eba947dab35716fc59f88bc7b17fdae0de1d1a3.tar.gz |
Sort imports using isort
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_commandset.py | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/tests/test_commandset.py b/tests/test_commandset.py index bed570b9..eedf51de 100644 --- a/tests/test_commandset.py +++ b/tests/test_commandset.py @@ -5,16 +5,13 @@ Test CommandSet """ from typing import List + import pytest import cmd2 from cmd2 import utils -from .conftest import ( - complete_tester, - normalize, - run_cmd, -) +from .conftest import complete_tester, normalize, run_cmd @cmd2.register_command |