Use core constants for rflink (#46440)

This commit is contained in:
tkdrob 2021-02-12 17:32:56 -05:00 committed by GitHub
parent da4cb6d294
commit ae45d7dade
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 14 additions and 14 deletions

View file

@ -6,11 +6,16 @@ from homeassistant.components.binary_sensor import (
PLATFORM_SCHEMA,
BinarySensorEntity,
)
from homeassistant.const import CONF_DEVICE_CLASS, CONF_FORCE_UPDATE, CONF_NAME
from homeassistant.const import (
CONF_DEVICE_CLASS,
CONF_DEVICES,
CONF_FORCE_UPDATE,
CONF_NAME,
)
import homeassistant.helpers.config_validation as cv
import homeassistant.helpers.event as evt
from . import CONF_ALIASES, CONF_DEVICES, RflinkDevice
from . import CONF_ALIASES, RflinkDevice
CONF_OFF_DELAY = "off_delay"
DEFAULT_FORCE_UPDATE = False