Add missing hass type hint in component tests (i) (#124216)

This commit is contained in:
epenet
2024-08-19 12:40:17 +02:00
committed by GitHub
parent 057f31132b
commit f0af33bd2b
12 changed files with 63 additions and 33 deletions

View File

@@ -71,7 +71,7 @@ def storage_setup(hass: HomeAssistant, hass_storage: dict[str, Any]):
return _storage
async def async_set_value(hass, entity_id, value):
async def async_set_value(hass: HomeAssistant, entity_id: str, value: str) -> None:
"""Set input_text to value."""
await hass.services.async_call(
DOMAIN,