Coverage for src/bob/bio/base/__init__.py: 100%
10 statements
« prev ^ index » next coverage.py v7.6.5, created at 2024-11-14 21:41 +0100
« prev ^ index » next coverage.py v7.6.5, created at 2024-11-14 21:41 +0100
1# isort: skip_file
2from .utils import * # noqa: F401,F403
3from . import database # noqa: F401
4from . import preprocessor # noqa: F401
5from . import extractor # noqa: F401
6from . import algorithm # noqa: F401
7from . import annotator # noqa: F401
8from . import pipelines # noqa: F401
10from . import script # noqa: F401
11from . import score # noqa: F401
13# gets sphinx autodoc done right - don't remove it
14__all__ = [_ for _ in dir() if not _.startswith("_")]