Type hint improvements (#33082)

This commit is contained in:
Ville Skyttä 2020-04-17 21:33:58 +03:00 committed by GitHub
parent f04be61f6f
commit 267d98b5eb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 124 additions and 73 deletions

View file

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