Make async_extract_entities generic (#78490)

This commit is contained in:
epenet 2022-09-16 00:20:47 +02:00 committed by GitHub
parent 635ed562ee
commit 8300f8234c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 4 deletions

View file

@ -186,7 +186,7 @@ class EntityComponent(Generic[_EntityT]):
This method must be run in the event loop.
"""
return await service.async_extract_entities( # type: ignore[return-value]
return await service.async_extract_entities(
self.hass, self.entities, service_call, expand_group
)