diff --git a/homeassistant/components/blinksticklight/light.py b/homeassistant/components/blinksticklight/light.py index 56009c90da3..71e6a6b2c71 100644 --- a/homeassistant/components/blinksticklight/light.py +++ b/homeassistant/components/blinksticklight/light.py @@ -54,11 +54,6 @@ class BlinkStickLight(LightEntity): self._hs_color = None self._brightness = None - @property - def should_poll(self): - """Set up polling.""" - return True - @property def name(self): """Return the name of the light.""" diff --git a/homeassistant/components/decora/light.py b/homeassistant/components/decora/light.py index 4335c99076a..2fc436eda20 100644 --- a/homeassistant/components/decora/light.py +++ b/homeassistant/components/decora/light.py @@ -125,11 +125,6 @@ class DecoraLight(LightEntity): """Flag supported features.""" return SUPPORT_DECORA_LED - @property - def should_poll(self): - """We can read the device state, so poll.""" - return True - @property def assumed_state(self): """We can read the actual state.""" diff --git a/homeassistant/components/xiaomi_miio/light.py b/homeassistant/components/xiaomi_miio/light.py index 29c80faa892..34ebb550adf 100644 --- a/homeassistant/components/xiaomi_miio/light.py +++ b/homeassistant/components/xiaomi_miio/light.py @@ -278,11 +278,6 @@ class XiaomiPhilipsAbstractLight(LightEntity): self._state = None self._state_attrs = {ATTR_MODEL: self._model} - @property - def should_poll(self): - """Poll the light.""" - return True - @property def unique_id(self): """Return an unique ID.""" diff --git a/homeassistant/components/zengge/light.py b/homeassistant/components/zengge/light.py index fa2c7d50add..30776eabbb3 100644 --- a/homeassistant/components/zengge/light.py +++ b/homeassistant/components/zengge/light.py @@ -97,11 +97,6 @@ class ZenggeLight(LightEntity): """Flag supported features.""" return SUPPORT_ZENGGE_LED - @property - def should_poll(self): - """Feel free to poll.""" - return True - @property def assumed_state(self): """We can report the actual state."""