Address late Airzone strict typing comments (#71627)

Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
This commit is contained in:
Álvaro Fernández Rojas
2022-05-10 10:00:38 +02:00
committed by GitHub
parent 0f41f56998
commit 46becd4023
2 changed files with 2 additions and 3 deletions

View File

@@ -162,7 +162,7 @@ class AirzoneClimate(AirzoneZoneEntity, ClimateEntity):
params[API_ON] = 1
await self._async_update_hvac_params(params)
async def async_set_temperature(self, **kwargs: dict[str, Any]) -> None:
async def async_set_temperature(self, **kwargs: Any) -> None:
"""Set new target temperature."""
params = {
API_SET_POINT: kwargs.get(ATTR_TEMPERATURE),