Coverage for src/bob/pad/base/__init__.py: 100%

4 statements  

« prev     ^ index     » next       coverage.py v7.3.2, created at 2023-12-06 21:56 +0100

1# isort: skip_file 

2from . import database # noqa: F401 

3from . import error_utils # noqa: F401 

4from . import script # noqa: F401 

5 

6# gets sphinx autodoc done right - don't remove it 

7__all__ = [_ for _ in dir() if not _.startswith("_")]