diff options
Diffstat (limited to 'src/pybind/mgr/progress/__init__.py')
-rw-r--r-- | src/pybind/mgr/progress/__init__.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/pybind/mgr/progress/__init__.py b/src/pybind/mgr/progress/__init__.py new file mode 100644 index 000000000..3f333e01b --- /dev/null +++ b/src/pybind/mgr/progress/__init__.py @@ -0,0 +1,7 @@ +import os + +if 'UNITTEST' in os.environ: + import tests +from .module import Module + + |