Files
openrun/analysis.py

13 lines
499 B
Python
Raw Permalink Normal View History

2026-05-19 08:34:22 -04:00
"""Backwards-compat shim — everything is now in openrun.
2026-05-18 12:53:24 -04:00
2026-05-19 08:34:22 -04:00
This module used to host all loaders + derived metrics. Phase 0 of the
openrun refactor moved them into the `openrun` package. Existing notebooks
that still `from analysis import ...` continue to work; new code should
`from openrun import ...` directly.
2026-05-18 12:53:24 -04:00
"""
2026-05-19 08:34:22 -04:00
from openrun import * # noqa: F401,F403
from openrun.model import ( # noqa: F401 (re-export private-ish helpers some callers use)
_SPLIT_RAW_FIELDS,
_resolve_fit_path,
2026-05-18 12:53:24 -04:00
)