(self, name: str, project: str)
| 424 | ) |
| 425 | |
| 426 | def _get_entity(self, name: str, project: str) -> Entity: |
| 427 | return self._get_object( |
| 428 | table=entities, |
| 429 | name=name, |
| 430 | project=project, |
| 431 | proto_class=EntityProto, |
| 432 | python_class=Entity, |
| 433 | id_field_name="entity_name", |
| 434 | proto_field_name="entity_proto", |
| 435 | not_found_exception=EntityNotFoundException, |
| 436 | ) |
| 437 | |
| 438 | def _get_any_feature_view(self, name: str, project: str) -> BaseFeatureView: |
| 439 | fv = self._get_object( |
nothing calls this directly
no test coverage detected