Rename roomba base entity module (#126134)
* Move roomba base entity to separate module * Simplifypull/126209/head
parent
116733e1a5
commit
b74a6a64bc
|
@ -7,7 +7,7 @@ from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|||
|
||||
from . import roomba_reported_state
|
||||
from .const import DOMAIN
|
||||
from .irobot_base import IRobotEntity
|
||||
from .entity import IRobotEntity
|
||||
from .models import RoombaData
|
||||
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@ import logging
|
|||
|
||||
from homeassistant.components.vacuum import VacuumEntityFeature
|
||||
|
||||
from .irobot_base import SUPPORT_IROBOT, IRobotVacuum
|
||||
from .entity import SUPPORT_IROBOT, IRobotVacuum
|
||||
|
||||
_LOGGER = logging.getLogger(__name__)
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@ import logging
|
|||
|
||||
from homeassistant.components.vacuum import VacuumEntityFeature
|
||||
|
||||
from .irobot_base import SUPPORT_IROBOT, IRobotVacuum
|
||||
from .entity import SUPPORT_IROBOT, IRobotVacuum
|
||||
|
||||
_LOGGER = logging.getLogger(__name__)
|
||||
|
||||
|
|
|
@ -23,7 +23,7 @@ from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|||
from homeassistant.helpers.typing import StateType
|
||||
|
||||
from .const import DOMAIN
|
||||
from .irobot_base import IRobotEntity
|
||||
from .entity import IRobotEntity
|
||||
from .models import RoombaData
|
||||
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@ from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|||
from . import roomba_reported_state
|
||||
from .braava import BraavaJet
|
||||
from .const import DOMAIN
|
||||
from .irobot_base import IRobotVacuum
|
||||
from .entity import IRobotVacuum
|
||||
from .models import RoombaData
|
||||
from .roomba import RoombaVacuum, RoombaVacuumCarpetBoost
|
||||
|
||||
|
|
Loading…
Reference in New Issue