Skip to content

Commit

Permalink
Fix state for litterrobot (#128297)
Browse files Browse the repository at this point in the history
  • Loading branch information
gjohansson-ST authored Oct 13, 2024
1 parent 188e503 commit d858911
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions homeassistant/components/litterrobot/vacuum.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
StateVacuumEntityDescription,
VacuumEntityFeature,
)
from homeassistant.const import STATE_OFF
from homeassistant.core import HomeAssistant
from homeassistant.helpers import config_validation as cv, entity_platform
from homeassistant.helpers.entity_platform import AddEntitiesCallback
Expand All @@ -39,7 +38,7 @@
LitterBoxStatus.DRAWER_FULL_2: STATE_DOCKED,
LitterBoxStatus.READY: STATE_DOCKED,
LitterBoxStatus.CAT_SENSOR_INTERRUPTED: STATE_PAUSED,
LitterBoxStatus.OFF: STATE_OFF,
LitterBoxStatus.OFF: STATE_DOCKED,
}

LITTER_BOX_ENTITY = StateVacuumEntityDescription(
Expand Down

0 comments on commit d858911

Please sign in to comment.