Drop hass argument from service extraction helpers (#152738)

This commit is contained in:
epenet
2025-09-22 16:08:07 +02:00
committed by GitHub
parent 4b6dd0eb8f
commit 018d59a892
11 changed files with 33 additions and 32 deletions

View File

@@ -240,7 +240,7 @@ class EntityComponent[_EntityT: entity.Entity = entity.Entity]:
This method must be run in the event loop.
"""
return await service.async_extract_entities(
self.hass, self.entities, service_call, expand_group
self.entities, service_call, expand_group
)
@callback