13 lines
499 B
Python
13 lines
499 B
Python
"""Backwards-compat shim — everything is now in openrun.
|
|
|
|
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.
|
|
"""
|
|
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,
|
|
)
|