From 116dd674729dd4c40e6c0970f71f9bc382859d96 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Tue, 27 Jun 2023 14:52:44 +0200 Subject: [PATCH] Use identify device class in LIFX identify button entity (#95372) --- homeassistant/components/lifx/button.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/lifx/button.py b/homeassistant/components/lifx/button.py index b5f5373b3e8..00d216351a0 100644 --- a/homeassistant/components/lifx/button.py +++ b/homeassistant/components/lifx/button.py @@ -24,7 +24,7 @@ RESTART_BUTTON_DESCRIPTION = ButtonEntityDescription( IDENTIFY_BUTTON_DESCRIPTION = ButtonEntityDescription( key=IDENTIFY, - name="Identify", + device_class=ButtonDeviceClass.IDENTIFY, entity_category=EntityCategory.CONFIG, )