|
|
"""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): |
|
|
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", |
|
|
] |
|
|
|