Coverage for src/shephex/study/__init__.py: 100%
3 statements
« prev ^ index » next coverage.py v7.6.1, created at 2025-06-20 14:13 +0200
« prev ^ index » next coverage.py v7.6.1, created at 2025-06-20 14:13 +0200
1"""
2A study is a collection of experiments. Used to avoid repeating the same experiment and to keep track of the results.
3"""
4from shephex.study.study import Study # noqa
5from shephex.study.renderer import StudyRenderer
7__all__ = ['Study', 'StudyRenderer']