Skip to content

Commit

Permalink
Fix empty existing data
Browse files Browse the repository at this point in the history
  • Loading branch information
rikroe committed Nov 14, 2024
1 parent d78f93f commit d18fd4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/eurotronic_cometblue/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ async def async_step_bluetooth_confirm(
CONF_TIMEOUT: DEFAULT_TIMEOUT_SECONDS,
CONF_RETRY_COUNT: DEFAULT_RETRY_COUNT,
}
| self._existing_entry_data,
| (self._existing_entry_data or {}),
)

return self.async_show_form(
Expand Down

0 comments on commit d18fd4b

Please sign in to comment.