diff --git a/homeassistant/components/fints/sensor.py b/homeassistant/components/fints/sensor.py index d81f353c222..6cd62333a87 100644 --- a/homeassistant/components/fints/sensor.py +++ b/homeassistant/components/fints/sensor.py @@ -169,14 +169,6 @@ class FinTsAccount(Entity): self._balance: float = None self._currency: str = None - @property - def should_poll(self) -> bool: - """Return True. - - Data needs to be polled from the bank servers. - """ - return True - def update(self) -> None: """Get the current balance and currency for the account.""" bank = self._client.client @@ -229,14 +221,6 @@ class FinTsHoldingsAccount(Entity): self._holdings = [] self._total: float = None - @property - def should_poll(self) -> bool: - """Return True. - - Data needs to be polled from the bank servers. - """ - return True - def update(self) -> None: """Get the current holdings for the account.""" bank = self._client.client diff --git a/homeassistant/components/history_stats/sensor.py b/homeassistant/components/history_stats/sensor.py index 8b993b0e837..40c0a76bfba 100644 --- a/homeassistant/components/history_stats/sensor.py +++ b/homeassistant/components/history_stats/sensor.py @@ -174,11 +174,6 @@ class HistoryStatsSensor(Entity): """Return the unit the value is expressed in.""" return self._unit_of_measurement - @property - def should_poll(self): - """Return the polling state.""" - return True - @property def device_state_attributes(self): """Return the state attributes of the sensor.""" diff --git a/homeassistant/components/influxdb/sensor.py b/homeassistant/components/influxdb/sensor.py index eb5b0ce6091..2fcf4baaba8 100644 --- a/homeassistant/components/influxdb/sensor.py +++ b/homeassistant/components/influxdb/sensor.py @@ -224,11 +224,6 @@ class InfluxSensor(Entity): """Return the unit of measurement of this entity, if any.""" return self._unit_of_measurement - @property - def should_poll(self): - """Return the polling state.""" - return True - def update(self): """Get the latest data from Influxdb and updates the states.""" self.data.update() diff --git a/homeassistant/components/skybell/__init__.py b/homeassistant/components/skybell/__init__.py index 9606d9bcf12..c1c9d76314c 100644 --- a/homeassistant/components/skybell/__init__.py +++ b/homeassistant/components/skybell/__init__.py @@ -77,11 +77,6 @@ class SkybellDevice(Entity): """Initialize a sensor for Skybell device.""" self._device = device - @property - def should_poll(self): - """Return the polling state.""" - return True - def update(self): """Update automation state.""" self._device.refresh() diff --git a/homeassistant/components/twitch/sensor.py b/homeassistant/components/twitch/sensor.py index 52212fca060..4b019628158 100644 --- a/homeassistant/components/twitch/sensor.py +++ b/homeassistant/components/twitch/sensor.py @@ -72,11 +72,6 @@ class TwitchSensor(Entity): self._follow = None self._statistics = None - @property - def should_poll(self): - """Device should be polled.""" - return True - @property def name(self): """Return the name of the sensor.""" diff --git a/homeassistant/components/wirelesstag/__init__.py b/homeassistant/components/wirelesstag/__init__.py index ba45844597b..83e92c2250b 100644 --- a/homeassistant/components/wirelesstag/__init__.py +++ b/homeassistant/components/wirelesstag/__init__.py @@ -227,11 +227,6 @@ class WirelessTagBaseSensor(Entity): self._name = self._tag.name self._state = None - @property - def should_poll(self): - """Return the polling state.""" - return True - @property def name(self): """Return the name of the sensor.""" diff --git a/homeassistant/components/xiaomi_miio/sensor.py b/homeassistant/components/xiaomi_miio/sensor.py index 6e25750ea50..5dcf1f8d1e7 100644 --- a/homeassistant/components/xiaomi_miio/sensor.py +++ b/homeassistant/components/xiaomi_miio/sensor.py @@ -174,11 +174,6 @@ class XiaomiAirQualityMonitor(Entity): ATTR_MODEL: self._model, } - @property - def should_poll(self): - """Poll the miio device.""" - return True - @property def unique_id(self): """Return an unique ID."""