From 869cb83170ca89dea0ccc1d12c0ac47f2ec0ff4f Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Sun, 15 Nov 2020 07:40:03 -1000 Subject: [PATCH] Set should_poll for zone entities (#43212) --- homeassistant/components/zone/__init__.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/homeassistant/components/zone/__init__.py b/homeassistant/components/zone/__init__.py index c3e1beb44af..01a8b9aa0f4 100644 --- a/homeassistant/components/zone/__init__.py +++ b/homeassistant/components/zone/__init__.py @@ -325,6 +325,11 @@ class Zone(entity.Entity): """Return the state attributes of the zone.""" return self._attrs + @property + def should_poll(self) -> bool: + """Zone does not poll.""" + return False + async def async_update_config(self, config: Dict) -> None: """Handle when the config is updated.""" if self._config == config: