summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/insights/__init__.py
blob: ea61a12fd7eaf800f2feaa9fef155cfe9a0aa770 (plain)
1
2
3
4
5
6
7
8
9
from __future__ import absolute_import
import os

if 'UNITTEST' not in os.environ:
    from .module import Module
else:
    import sys
    import mock
    sys.modules['ceph_module'] = mock.Mock()