mirror of https://github.com/simbaja/ha_gehome.git
- changed absolute package references to relative
This commit is contained in:
parent
08fa7fda7b
commit
c11f27d66b
|
@ -2,7 +2,7 @@ from datetime import timedelta
|
|||
from typing import Optional, Dict, Any
|
||||
|
||||
from gekitchensdk import GeAppliance
|
||||
from ge_kitchen.devices import ApplianceApi
|
||||
from ...devices import ApplianceApi
|
||||
|
||||
class GeEntity:
|
||||
"""Base class for all GE Entities"""
|
||||
|
|
|
@ -3,7 +3,7 @@ from typing import Optional
|
|||
from homeassistant.components.binary_sensor import BinarySensorEntity
|
||||
|
||||
from gekitchensdk import ErdCode, ErdCodeType, ErdCodeClass
|
||||
from ge_kitchen.devices import ApplianceApi
|
||||
from ...devices import ApplianceApi
|
||||
from .ge_erd_entity import GeErdEntity
|
||||
|
||||
|
||||
|
|
|
@ -4,8 +4,8 @@ from typing import Optional
|
|||
from homeassistant.const import DEVICE_CLASS_TEMPERATURE, TEMP_CELSIUS, TEMP_FAHRENHEIT
|
||||
from gekitchensdk import ErdCode, ErdCodeType, ErdCodeClass, ErdMeasurementUnits
|
||||
|
||||
from ge_kitchen.const import DOMAIN
|
||||
from ge_kitchen.devices import ApplianceApi
|
||||
from ...const import DOMAIN
|
||||
from ...devices import ApplianceApi
|
||||
from .ge_entity import GeEntity
|
||||
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@ from typing import Optional
|
|||
|
||||
import magicattr
|
||||
from gekitchensdk import ErdCodeType
|
||||
from ge_kitchen.devices import ApplianceApi
|
||||
from ...devices import ApplianceApi
|
||||
from .ge_erd_binary_sensor import GeErdBinarySensor
|
||||
|
||||
class GeErdPropertyBinarySensor(GeErdBinarySensor):
|
||||
|
|
|
@ -2,7 +2,7 @@ from typing import Optional
|
|||
|
||||
import magicattr
|
||||
from gekitchensdk import ErdCode, ErdCodeType, ErdMeasurementUnits
|
||||
from ge_kitchen.devices import ApplianceApi
|
||||
from ...devices import ApplianceApi
|
||||
from .ge_erd_sensor import GeErdSensor
|
||||
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ from homeassistant.const import (
|
|||
TEMP_CELSIUS
|
||||
)
|
||||
from gekitchensdk import ErdCode, ErdMeasurementUnits
|
||||
from ge_kitchen.const import DOMAIN
|
||||
from ...const import DOMAIN
|
||||
from .ge_erd_entity import GeEntity
|
||||
|
||||
_LOGGER = logging.getLogger(__name__)
|
||||
|
|
|
@ -17,7 +17,7 @@ from gekitchensdk import (
|
|||
FridgeIceBucketStatus,
|
||||
IceMakerControlStatus
|
||||
)
|
||||
from ge_kitchen.const import DOMAIN
|
||||
from ...const import DOMAIN
|
||||
from ..common import GeWaterHeater
|
||||
from .const import *
|
||||
|
||||
|
|
|
@ -11,8 +11,8 @@ from gekitchensdk import (
|
|||
)
|
||||
|
||||
from homeassistant.const import ATTR_TEMPERATURE, TEMP_CELSIUS, TEMP_FAHRENHEIT
|
||||
from ge_kitchen.const import DOMAIN
|
||||
from ge_kitchen.devices import ApplianceApi
|
||||
from ...const import DOMAIN
|
||||
from ...devices import ApplianceApi
|
||||
from ..common import GeWaterHeater
|
||||
from .const import *
|
||||
|
||||
|
|
Loading…
Reference in New Issue