diff --git a/homeassistant/components/kira/remote.py b/homeassistant/components/kira/remote.py index 52659426681..9c02a3199e4 100644 --- a/homeassistant/components/kira/remote.py +++ b/homeassistant/components/kira/remote.py @@ -6,9 +6,7 @@ from homeassistant.components import remote from homeassistant.const import CONF_DEVICE, CONF_NAME from homeassistant.helpers.entity import Entity -from . import CONF_REMOTE - -DOMAIN = "kira" +from . import CONF_REMOTE, DOMAIN _LOGGER = logging.getLogger(__name__) diff --git a/homeassistant/components/kira/sensor.py b/homeassistant/components/kira/sensor.py index 6656780d0e9..2d6322918c7 100644 --- a/homeassistant/components/kira/sensor.py +++ b/homeassistant/components/kira/sensor.py @@ -4,9 +4,7 @@ import logging from homeassistant.const import CONF_DEVICE, CONF_NAME, STATE_UNKNOWN from homeassistant.helpers.entity import Entity -from . import CONF_SENSOR - -DOMAIN = "kira" +from . import CONF_SENSOR, DOMAIN _LOGGER = logging.getLogger(__name__)