mirror of
https://github.com/home-assistant/core.git
synced 2025-11-09 02:49:40 +00:00
Add missing hass type hint in component tests (i) (#124216)
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user