Remove old migrate unique ID code from ISY994 (#85641)

Co-authored-by: J. Nick Koston <nick@koston.org>
This commit is contained in:
shbatm 2023-01-10 16:42:31 -06:00 committed by GitHub
parent d3249432c9
commit 856895ddf5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 4 additions and 66 deletions

View file

@ -54,7 +54,7 @@ from .const import (
UOM_TO_STATES,
)
from .entity import ISYNodeEntity
from .helpers import convert_isy_value_to_hass, migrate_old_unique_ids
from .helpers import convert_isy_value_to_hass
async def async_setup_entry(
@ -67,7 +67,6 @@ async def async_setup_entry(
for node in hass_isy_data[ISY994_NODES][Platform.CLIMATE]:
entities.append(ISYThermostatEntity(node))
await migrate_old_unique_ids(hass, Platform.CLIMATE, entities)
async_add_entities(entities)