This commit is contained in:
Home Assistant Version Control
2026-08-07 16:23:20 +00:00
parent 305e1b2545
commit baabdf0c0e
58 changed files with 678 additions and 109 deletions
@@ -15,6 +15,10 @@ class CompositeLoader(Loader):
for loader in self.loaders:
await loader.initialize()
def get_discovery_ignored_domains(self) -> set[str]:
"""Get all integration domains excluded by the combined libraries."""
return {domain for loader in self.loaders for domain in loader.get_discovery_ignored_domains()}
async def get_manufacturer_listing(
self,
device_types: set[DeviceType] | None,