(
self,
name: str,
hide_dummy_entity: bool = True,
allow_registry_cache: bool = False,
)
| 783 | ) |
| 784 | |
| 785 | def _get_stream_feature_view( |
| 786 | self, |
| 787 | name: str, |
| 788 | hide_dummy_entity: bool = True, |
| 789 | allow_registry_cache: bool = False, |
| 790 | ) -> StreamFeatureView: |
| 791 | stream_feature_view = self.registry.get_stream_feature_view( |
| 792 | name, self.project, allow_cache=allow_registry_cache |
| 793 | ) |
| 794 | if hide_dummy_entity and stream_feature_view.entities[0] == DUMMY_ENTITY_NAME: |
| 795 | stream_feature_view.entities = [] |
| 796 | return stream_feature_view |
| 797 | |
| 798 | def get_on_demand_feature_view( |
| 799 | self, name: str, allow_registry_cache: bool = False |
no test coverage detected