Skip to content

Commit

Permalink
Rename roomba base entity module (#126134)
Browse files Browse the repository at this point in the history
* Move roomba base entity to separate module

* Simplify
  • Loading branch information
epenet authored Sep 18, 2024
1 parent 116733e commit b74a6a6
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion homeassistant/components/roomba/binary_sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

from . import roomba_reported_state
from .const import DOMAIN
from .irobot_base import IRobotEntity
from .entity import IRobotEntity
from .models import RoombaData


Expand Down
2 changes: 1 addition & 1 deletion homeassistant/components/roomba/braava.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

from homeassistant.components.vacuum import VacuumEntityFeature

from .irobot_base import SUPPORT_IROBOT, IRobotVacuum
from .entity import SUPPORT_IROBOT, IRobotVacuum

_LOGGER = logging.getLogger(__name__)

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion homeassistant/components/roomba/roomba.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

from homeassistant.components.vacuum import VacuumEntityFeature

from .irobot_base import SUPPORT_IROBOT, IRobotVacuum
from .entity import SUPPORT_IROBOT, IRobotVacuum

_LOGGER = logging.getLogger(__name__)

Expand Down
2 changes: 1 addition & 1 deletion homeassistant/components/roomba/sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
from homeassistant.helpers.typing import StateType

from .const import DOMAIN
from .irobot_base import IRobotEntity
from .entity import IRobotEntity
from .models import RoombaData


Expand Down
2 changes: 1 addition & 1 deletion homeassistant/components/roomba/vacuum.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
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

Expand Down

0 comments on commit b74a6a6

Please sign in to comment.