Skip to content

Commit

Permalink
Bump aiohomekit to 3.0.9 (#103123)
Browse files Browse the repository at this point in the history
  • Loading branch information
bdraco committed Oct 31, 2023
1 parent 9b27552 commit 3ebd029
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion homeassistant/components/homekit_controller/connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -884,7 +884,9 @@ def async_subscribe_config_changed(self, callback_: CALLBACK_TYPE) -> CALLBACK_T
self._config_changed_callbacks.add(callback_)
return partial(self._remove_config_changed_callback, callback_)

async def get_characteristics(self, *args: Any, **kwargs: Any) -> dict[str, Any]:
async def get_characteristics(
self, *args: Any, **kwargs: Any
) -> dict[tuple[int, int], dict[str, Any]]:
"""Read latest state from homekit accessory."""
return await self.pairing.get_characteristics(*args, **kwargs)

Expand Down
2 changes: 1 addition & 1 deletion homeassistant/components/homekit_controller/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
"documentation": "https://www.home-assistant.io/integrations/homekit_controller",
"iot_class": "local_push",
"loggers": ["aiohomekit", "commentjson"],
"requirements": ["aiohomekit==3.0.8"],
"requirements": ["aiohomekit==3.0.9"],
"zeroconf": ["_hap._tcp.local.", "_hap._udp.local."]
}
2 changes: 1 addition & 1 deletion requirements_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ aioguardian==2022.07.0
aioharmony==0.2.10

# homeassistant.components.homekit_controller
aiohomekit==3.0.8
aiohomekit==3.0.9

# homeassistant.components.emulated_hue
# homeassistant.components.http
Expand Down
2 changes: 1 addition & 1 deletion requirements_test_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ aioguardian==2022.07.0
aioharmony==0.2.10

# homeassistant.components.homekit_controller
aiohomekit==3.0.8
aiohomekit==3.0.9

# homeassistant.components.emulated_hue
# homeassistant.components.http
Expand Down

0 comments on commit 3ebd029

Please sign in to comment.