From 49c7aa7333f231642b3d128c1e2bfe97c7829c2e Mon Sep 17 00:00:00 2001 From: Teemu Rytilahti Date: Tue, 3 Apr 2018 20:59:31 +0200 Subject: [PATCH] remove raw_command which is already implemented in the base class --- miio/vacuum.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/miio/vacuum.py b/miio/vacuum.py index d6ee74934..fda633ea1 100644 --- a/miio/vacuum.py +++ b/miio/vacuum.py @@ -342,10 +342,6 @@ def configure_wifi(self, ssid, password, uid=0, timezone=None): return super().configure_wifi(ssid, password, uid, extra_params) - def raw_command(self, cmd, params): - """Send a raw command to the robot.""" - return self.send(cmd, params) - @classmethod def get_device_group(cls):