Fix logger message in samsungtv (#110484)

pull/109176/head
J. Nick Koston 2024-02-13 11:12:37 -06:00 committed by GitHub
parent 3bf6d525fb
commit 2981d7ed0e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 0 deletions

View File

@ -269,7 +269,9 @@ async def async_migrate_entry(hass: HomeAssistant, config_entry: ConfigEntry) ->
en_reg = er.async_get(hass)
en_reg.async_clear_config_entry(config_entry.entry_id)
version = 2
hass.config_entries.async_update_entry(config_entry, version=2)
LOGGER.debug("Migration to version %s successful", version)
return True