From 5712d12c42e417c6265fa66d45941a0d0751e06c Mon Sep 17 00:00:00 2001 From: Erik Montnemery Date: Mon, 3 Jul 2023 18:37:18 +0200 Subject: [PATCH] Remove unsupported services from tuya vacuum (#95790) --- homeassistant/components/tuya/vacuum.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/homeassistant/components/tuya/vacuum.py b/homeassistant/components/tuya/vacuum.py index a2961a55d78..62ff1d63ca0 100644 --- a/homeassistant/components/tuya/vacuum.py +++ b/homeassistant/components/tuya/vacuum.py @@ -153,14 +153,6 @@ class TuyaVacuumEntity(TuyaEntity, StateVacuumEntity): return None return TUYA_STATUS_TO_HA.get(status) - def turn_on(self, **kwargs: Any) -> None: - """Turn the device on.""" - self._send_command([{"code": DPCode.POWER, "value": True}]) - - def turn_off(self, **kwargs: Any) -> None: - """Turn the device off.""" - self._send_command([{"code": DPCode.POWER, "value": False}]) - def start(self, **kwargs: Any) -> None: """Start the device.""" self._send_command([{"code": DPCode.POWER_GO, "value": True}])