Coverage for src/shephex/study/__init__.py: 100%
3 statements
« prev ^ index » next coverage.py v7.6.1, created at 2025-03-29 18:45 +0100
« prev ^ index » next coverage.py v7.6.1, created at 2025-03-29 18:45 +0100
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']