Lint roomba (#35000)

This commit is contained in:
Paulus Schoutsen 2020-04-30 22:27:34 -07:00
parent bc9125666f
commit af5cdc1f65

View File

@ -146,7 +146,7 @@ class IRobotVacuum(IRobotEntity, StateVacuumDevice):
state = STATE_MAP[phase]
except KeyError:
return STATE_ERROR
if cycle != "none" and (state == STATE_IDLE or state == STATE_DOCKED):
if cycle != "none" and state in (STATE_IDLE, STATE_DOCKED):
state = STATE_PAUSED
return state