File size: 566 Bytes
03198af 2db5c7d 03198af 2db5c7d 39ec358 a5857b6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
"""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",
]
|