summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/cli_api/__init__.py
blob: a52284054d240057ee07e467979333842fcf5d5f (plain)
1
2
3
4
5
6
7
8
9
10
from .module import CLI

__all__ = [
    "CLI",
]

import os
if 'UNITTEST' in os.environ:
    import tests  # noqa # pylint: disable=unused-import
    __all__.append(tests.__name__)