From 82a422930b64d2ac77554fc914c01c513f4d7987 Mon Sep 17 00:00:00 2001 From: Simone Chemelli Date: Mon, 22 Nov 2021 01:51:48 +0100 Subject: [PATCH] Honor "Enable newly added entities" for Fritz (#59948) --- homeassistant/components/fritz/common.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/homeassistant/components/fritz/common.py b/homeassistant/components/fritz/common.py index 09926e5d9ac..77d21c269bd 100644 --- a/homeassistant/components/fritz/common.py +++ b/homeassistant/components/fritz/common.py @@ -442,11 +442,6 @@ class FritzDeviceBase(Entity): """No polling needed.""" return False - @property - def entity_registry_enabled_default(self) -> bool: - """Return if the entity should be enabled when first added to the entity registry.""" - return False - async def async_process_update(self) -> None: """Update device.""" raise NotImplementedError()