"""Example of a module using automatic import detection as provided by
:mod:`mmf.utils.init`. This is the minimal `__init__.py` file.
"""
from mmf.utils.init import get_imports as __get_imports
__all__, __doc__, __imports = __get_imports(globals())
exec(__imports)
del __get_imports, __imports