mirror of
https://github.com/home-assistant/core.git
synced 2025-10-19 00:29:26 +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:
@@ -1,12 +1,12 @@
|
||||
"""Support for Homekit lights."""
|
||||
import logging
|
||||
|
||||
from homeassistant.components.homekit_controller import (
|
||||
KNOWN_ACCESSORIES, HomeKitEntity)
|
||||
from homeassistant.components.light import (
|
||||
ATTR_BRIGHTNESS, ATTR_COLOR_TEMP, ATTR_HS_COLOR, SUPPORT_BRIGHTNESS,
|
||||
SUPPORT_COLOR, SUPPORT_COLOR_TEMP, Light)
|
||||
|
||||
from . import KNOWN_ACCESSORIES, HomeKitEntity
|
||||
|
||||
DEPENDENCIES = ['homekit_controller']
|
||||
|
||||
_LOGGER = logging.getLogger(__name__)
|
||||
|
Reference in New Issue
Block a user