Fix isy994 send_node_command (#39806)

This commit is contained in:
J. Nick Koston
2020-09-08 10:31:08 -05:00
committed by GitHub
parent 4bbd69955b
commit 8adfcf23f0
11 changed files with 47 additions and 42 deletions

View File

@ -49,7 +49,6 @@ from .const import (
)
from .entity import ISYNodeEntity, ISYProgramEntity
from .helpers import migrate_old_unique_ids
from .services import async_setup_device_services
DEVICE_PARENT_REQUIRED = [
DEVICE_CLASS_OPENING,
@ -172,7 +171,6 @@ async def async_setup_entry(
await migrate_old_unique_ids(hass, BINARY_SENSOR, devices)
async_add_entities(devices)
async_setup_device_services(hass)
def _detect_device_type_and_class(node: Union[Group, Node]) -> (str, str):