File size: 823 Bytes
71687cf | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | # Copyright (C) 2012 Anaconda, Inc
# SPDX-License-Identifier: BSD-3-Clause
"""Mock CLI implementation for `conda deactivate`.
A mock implementation of the deactivate shell command for better UX.
"""
from __future__ import annotations
from typing import TYPE_CHECKING
from .. import CondaError
if TYPE_CHECKING:
from argparse import ArgumentParser, Namespace, _SubParsersAction
def configure_parser(sub_parsers: _SubParsersAction, **kwargs) -> ArgumentParser:
p = sub_parsers.add_parser(
"deactivate",
help="Deactivate the current active conda environment.",
**kwargs,
)
p.set_defaults(func="conda.cli.main_mock_deactivate.execute")
return p
def execute(args: Namespace, parser: ArgumentParser) -> int:
raise CondaError("Run 'conda init' before 'conda deactivate'")
|