mirror of
https://github.com/home-assistant/core.git
synced 2025-07-16 17:57:11 +00:00
Fix unhandled KeyError
during Notion setup (#114787)
This commit is contained in:
parent
c1c664dc09
commit
841d3940d1
@ -108,7 +108,7 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
|
|||||||
(CONF_REFRESH_TOKEN, client.refresh_token),
|
(CONF_REFRESH_TOKEN, client.refresh_token),
|
||||||
(CONF_USER_UUID, client.user_uuid),
|
(CONF_USER_UUID, client.user_uuid),
|
||||||
):
|
):
|
||||||
if entry.data[key] == value:
|
if entry.data.get(key) == value:
|
||||||
continue
|
continue
|
||||||
entry_updates["data"][key] = value
|
entry_updates["data"][key] = value
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user