From d4dc7f806c6eddbe3662128f90d19337cdb5010d Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Fri, 10 Apr 2020 14:39:37 -0700 Subject: [PATCH] Fix cherry pick ZHA --- homeassistant/components/zha/entity.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/homeassistant/components/zha/entity.py b/homeassistant/components/zha/entity.py index 0f44d7efa82..d28bc622bbe 100644 --- a/homeassistant/components/zha/entity.py +++ b/homeassistant/components/zha/entity.py @@ -136,10 +136,6 @@ class BaseZhaEntity(LogMixin, entity.Entity): self.zha_device.gateway.remove_entity_reference(self) self.remove_future.set_result(True) - @callback - def async_restore_last_state(self, last_state) -> None: - """Restore previous state.""" - async def async_accept_signal( self, channel: ChannelType, signal: str, func: CALLABLE_T, signal_override=False ):