Called by ``FeatureStore.__init__`` to auto-register itself. This is an internal API — end users should call :func:`init` instead.
(store: "FeatureStore")
| 40 | |
| 41 | |
| 42 | def _register_store(store: "FeatureStore") -> None: |
| 43 | """Called by ``FeatureStore.__init__`` to auto-register itself. |
| 44 | |
| 45 | This is an internal API — end users should call :func:`init` instead. |
| 46 | """ |
| 47 | global _registered_store |
| 48 | _registered_store = store |
| 49 | |
| 50 | |
| 51 | def _build_client() -> Any: |