Rename roomba base entity module (#126134)

* Move roomba base entity to separate module

* Simplify
pull/126209/head
epenet 2024-09-18 12:14:20 +02:00 committed by GitHub
parent 116733e1a5
commit b74a6a64bc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 5 additions and 5 deletions

View File

@ -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

View File

@ -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__)

View File

@ -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__)

View File

@ -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

View File

@ -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