Skip to content

Commit d18fd4b

Browse files
committed
Fix empty existing data
1 parent d78f93f commit d18fd4b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

custom_components/eurotronic_cometblue/config_flow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ async def async_step_bluetooth_confirm(
102102
CONF_TIMEOUT: DEFAULT_TIMEOUT_SECONDS,
103103
CONF_RETRY_COUNT: DEFAULT_RETRY_COUNT,
104104
}
105-
| self._existing_entry_data,
105+
| (self._existing_entry_data or {}),
106106
)
107107

108108
return self.async_show_form(

0 commit comments

Comments
 (0)