Return the cached client, creating it on first call.
()
| 85 | |
| 86 | |
| 87 | def _ensure_client() -> Any: |
| 88 | """Return the cached client, creating it on first call.""" |
| 89 | global _client |
| 90 | if _client is None: |
| 91 | _client = _build_client() |
| 92 | return _client |
| 93 | |
| 94 | |
| 95 | def init(store: "FeatureStore") -> None: |
no test coverage detected