mirror of
https://github.com/home-assistant/core.git
synced 2025-12-24 12:59:34 +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,9 +1,10 @@
|
||||
"""Support for IHC sensors."""
|
||||
from homeassistant.components.ihc import IHC_CONTROLLER, IHC_DATA, IHC_INFO
|
||||
from homeassistant.components.ihc.ihcdevice import IHCDevice
|
||||
from homeassistant.const import CONF_UNIT_OF_MEASUREMENT
|
||||
from homeassistant.helpers.entity import Entity
|
||||
|
||||
from . import IHC_CONTROLLER, IHC_DATA, IHC_INFO
|
||||
from .ihcdevice import IHCDevice
|
||||
|
||||
DEPENDENCIES = ['ihc']
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user