Remove hidden

last reference removed in 8447f39fe1
This commit is contained in:
Anthony Sottile 2019-01-11 23:46:15 -08:00
parent 1ea2140f32
commit 2c53b709cd
2 changed files with 0 additions and 4 deletions

View File

@ -50,7 +50,6 @@ logger = logging.getLogger(__name__)
class Command(object):
name = None # type: Optional[str]
usage = None # type: Optional[str]
hidden = False # type: bool
ignore_require_venv = False # type: bool
def __init__(self, isolated=False):

View File

@ -81,9 +81,6 @@ def test_help_commands_equally_functional(in_memory_pip):
assert all(len(o) > 0 for o in out)
for name, cls in commands.items():
if cls.hidden:
continue
assert (
in_memory_pip.pip('help', name).stdout ==
in_memory_pip.pip(name, '--help').stdout != ""