Arrcus's picture
fixed Api trash
03198af
raw
history blame contribute delete
566 Bytes
"""Thin compatibility shim.
API helpers live in `api_call.py`. This module lazily delegates to avoid
import-time circular dependencies and remain backward compatible.
"""
from __future__ import annotations
def get_kit_measurements_df(*args, **kwargs): # type: ignore[override]
from api_call import get_kit_measurements_df as _impl
return _impl(*args, **kwargs)
def fetch_kit_dataframe(kit_id: int):
from api_call import fetch_kit_dataframe as _impl
return _impl(kit_id)
__all__ = [
"get_kit_measurements_df",
"fetch_kit_dataframe",
]