diff --git a/homeassistant/components/switch/wemo.py b/homeassistant/components/switch/wemo.py
index 624b8688a1c0eec65bd1e6c6b8fb895e8ccd5665..5eac5a14ed5112eb2709840d7abea6b0852290af 100644
--- a/homeassistant/components/switch/wemo.py
+++ b/homeassistant/components/switch/wemo.py
@@ -120,8 +120,6 @@ class WemoSwitch(SwitchDevice):
         """Is the device on - or in standby."""
         if self.insight_params:
             standby_state = self.insight_params['state']
-            # Standby  is actually '8' but seems more defensive
-            # to check for the On and Off states
             if standby_state == WEMO_ON:
                 return STATE_OFF
             elif standby_state == WEMO_OFF: