diff options
author | Eric Lin <anselor@gmail.com> | 2020-06-13 12:30:33 -0400 |
---|---|---|
committer | anselor <anselor@gmail.com> | 2020-08-04 13:38:08 -0400 |
commit | c88de7dfcfed716e81d06775b6e7929e4e01428c (patch) | |
tree | e8d2abb125ff2921f6de4607059fd7335dd70992 /tests/conftest.py | |
parent | e32cccc4e599c924c3fd5f8376f7efd085f88019 (diff) | |
download | cmd2-git-c88de7dfcfed716e81d06775b6e7929e4e01428c.tar.gz |
add ability to remove commands and commandsets
Issue #943
Diffstat (limited to 'tests/conftest.py')
-rw-r--r-- | tests/conftest.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/conftest.py b/tests/conftest.py index c07f7083..5b1a6f05 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -4,14 +4,13 @@ Cmd2 unit/functional testing """ import sys from contextlib import redirect_stderr, redirect_stdout -from typing import Dict, List, Optional, Union +from typing import List, Optional, Union from unittest import mock from pytest import fixture import cmd2 from cmd2.utils import StdSim -from cmd2.constants import COMMAND_FUNC_PREFIX, CMD_ATTR_HELP_CATEGORY # Prefer statically linked gnureadline if available (for macOS compatibility due to issues with libedit) try: |