(
self, project: str, tags: Optional[dict[str, str]], **kwargs
)
| 934 | ) |
| 935 | |
| 936 | def _list_feature_views( |
| 937 | self, project: str, tags: Optional[dict[str, str]], **kwargs |
| 938 | ) -> List[FeatureView]: |
| 939 | return self._list_objects( |
| 940 | feature_views, |
| 941 | project, |
| 942 | FeatureViewProto, |
| 943 | FeatureView, |
| 944 | "feature_view_proto", |
| 945 | tags=tags, |
| 946 | **kwargs, |
| 947 | ) |
| 948 | |
| 949 | def _list_saved_datasets( |
| 950 | self, project: str, tags: Optional[dict[str, str]] = None, **kwargs |
no test coverage detected