(
self,
allow_cache: bool = False,
hide_dummy_entity: bool = True,
tags: Optional[dict[str, str]] = None,
)
| 474 | return self._list_entities(allow_cache, tags=tags) |
| 475 | |
| 476 | def _list_entities( |
| 477 | self, |
| 478 | allow_cache: bool = False, |
| 479 | hide_dummy_entity: bool = True, |
| 480 | tags: Optional[dict[str, str]] = None, |
| 481 | ) -> List[Entity]: |
| 482 | all_entities = self.registry.list_entities( |
| 483 | self.project, allow_cache=allow_cache, tags=tags |
| 484 | ) |
| 485 | return [ |
| 486 | entity |
| 487 | for entity in all_entities |
| 488 | if entity.name != DUMMY_ENTITY_NAME or not hide_dummy_entity |
| 489 | ] |
| 490 | |
| 491 | def list_feature_services( |
| 492 | self, tags: Optional[dict[str, str]] = None |
no test coverage detected