Coverage for src/stable_yield_lab/analytics/__init__.py: 100%
2 statements
« prev ^ index » next coverage.py v7.10.7, created at 2025-10-04 20:38 +0000
« prev ^ index » next coverage.py v7.10.7, created at 2025-10-04 20:38 +0000
1"""Analytics subpackage bundling portfolio, performance, and risk helpers."""
3from . import attribution, metrics, performance, portfolio, risk
5__all__ = [
6 "attribution",
7 "metrics",
8 "performance",
9 "portfolio",
10 "risk",
11]