Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix async_get_last_action_log_entry in coordinator.py #79

Merged
merged 2 commits into from
Nov 11, 2024
Merged
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
5 changes: 3 additions & 2 deletions custom_components/hass_nuki_bt/coordinator.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ async def _async_update(
if service_info:
self.device.set_ble_device(service_info.device)
await self.device.update_state()
await self._async_get_last_action_log_entry()
await self.async_get_last_action_log_entry()
self.async_update_nuki_listeners()

@callback
Expand All @@ -140,7 +140,8 @@ async def async_wait_ready(self) -> bool:
return True
return False

async def _async_get_last_action_log_entry(self):
async def async_get_last_action_log_entry(self):
"""Get the last action log entry."""
if self._security_pin:
# get the latest log entry
# todo: check if Nuki logging is enabled
Expand Down