Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions homeassistant/components/airzone/coordinator.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

from datetime import timedelta
import logging
from typing import Any, cast
from typing import Any

from aioairzone.exceptions import AirzoneError
from aioairzone.localapi import AirzoneLocalApi
Expand Down Expand Up @@ -40,4 +40,4 @@ async def _async_update_data(self) -> dict[str, Any]:
await self.airzone.update()
except AirzoneError as error:
raise UpdateFailed(error) from error
return cast(dict[str, Any], self.airzone.data())
return self.airzone.data()
2 changes: 1 addition & 1 deletion homeassistant/components/airzone/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "Airzone",
"config_flow": true,
"documentation": "https://www.home-assistant.io/integrations/airzone",
"requirements": ["aioairzone==0.4.3"],
"requirements": ["aioairzone==0.4.4"],
"codeowners": ["@Noltari"],
"iot_class": "local_polling",
"loggers": ["aioairzone"]
Expand Down
2 changes: 1 addition & 1 deletion requirements_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ aio_geojson_nsw_rfs_incidents==0.4
aio_georss_gdacs==0.7

# homeassistant.components.airzone
aioairzone==0.4.3
aioairzone==0.4.4

# homeassistant.components.ambient_station
aioambient==2021.11.0
Expand Down
2 changes: 1 addition & 1 deletion requirements_test_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ aio_geojson_nsw_rfs_incidents==0.4
aio_georss_gdacs==0.7

# homeassistant.components.airzone
aioairzone==0.4.3
aioairzone==0.4.4

# homeassistant.components.ambient_station
aioambient==2021.11.0
Expand Down