From e9a63b7501887533088d77f83c87b448b4d5f006 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Thu, 20 Jul 2023 23:02:59 +0200 Subject: [PATCH] Use default icon for demo button entity (#96961) --- homeassistant/components/demo/button.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/homeassistant/components/demo/button.py b/homeassistant/components/demo/button.py index 02f3f584003..8b4a94a40af 100644 --- a/homeassistant/components/demo/button.py +++ b/homeassistant/components/demo/button.py @@ -22,7 +22,6 @@ async def async_setup_entry( DemoButton( unique_id="push", device_name="Push", - icon="mdi:gesture-tap-button", ), ] ) @@ -39,11 +38,9 @@ class DemoButton(ButtonEntity): self, unique_id: str, device_name: str, - icon: str, ) -> None: """Initialize the Demo button entity.""" self._attr_unique_id = unique_id - self._attr_icon = icon self._attr_device_info = DeviceInfo( identifiers={(DOMAIN, unique_id)}, name=device_name,