1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-24 21:06:19 +00:00

Use relative imports inside integrations (#22235)

* Use relative imports inside integrations

* Lint

* Fix automation tests

* Fix scene imports
This commit is contained in:
Paulus Schoutsen
2019-03-20 22:56:46 -07:00
committed by GitHub
parent ab17b22239
commit 4b1de61110
522 changed files with 1834 additions and 1725 deletions

View File

@@ -1,18 +1,17 @@
"""Support for Fibaro lights."""
import logging
import asyncio
from functools import partial
import logging
from homeassistant.const import (
CONF_WHITE_VALUE)
from homeassistant.components.fibaro import (
FIBARO_DEVICES, FibaroDevice,
CONF_DIMMING, CONF_COLOR, CONF_RESET_COLOR)
from homeassistant.components.light import (
ATTR_BRIGHTNESS, ATTR_HS_COLOR, ATTR_WHITE_VALUE, ENTITY_ID_FORMAT,
SUPPORT_BRIGHTNESS, SUPPORT_COLOR, SUPPORT_WHITE_VALUE, Light)
from homeassistant.const import CONF_WHITE_VALUE
import homeassistant.util.color as color_util
from . import (
CONF_COLOR, CONF_DIMMING, CONF_RESET_COLOR, FIBARO_DEVICES, FibaroDevice)
_LOGGER = logging.getLogger(__name__)
DEPENDENCIES = ['fibaro']