(
self,
name: str,
hide_dummy_entity: bool = True,
allow_registry_cache: bool = False,
)
| 738 | return self._get_feature_view(name, allow_registry_cache=allow_registry_cache) |
| 739 | |
| 740 | def _get_feature_view( |
| 741 | self, |
| 742 | name: str, |
| 743 | hide_dummy_entity: bool = True, |
| 744 | allow_registry_cache: bool = False, |
| 745 | ) -> FeatureView: |
| 746 | feature_view = self.registry.get_feature_view( |
| 747 | name, self.project, allow_cache=allow_registry_cache |
| 748 | ) |
| 749 | if hide_dummy_entity and feature_view.entities[0] == DUMMY_ENTITY_NAME: |
| 750 | feature_view.entities = [] |
| 751 | return feature_view |
| 752 | |
| 753 | def list_feature_view_versions(self, name: str) -> List[Dict[str, Any]]: |
| 754 | """ |
no test coverage detected