From 8f0f734c288e92b4f2f74aee45465214d278a346 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Mon, 15 Aug 2022 11:35:53 +0200 Subject: [PATCH] Fix entity category for LIFX buttons (#76788) --- homeassistant/components/lifx/button.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/homeassistant/components/lifx/button.py b/homeassistant/components/lifx/button.py index 3a4c73d2889..76afdc785e9 100644 --- a/homeassistant/components/lifx/button.py +++ b/homeassistant/components/lifx/button.py @@ -19,13 +19,13 @@ RESTART_BUTTON_DESCRIPTION = ButtonEntityDescription( key=RESTART, name="Restart", device_class=ButtonDeviceClass.RESTART, - entity_category=EntityCategory.DIAGNOSTIC, + entity_category=EntityCategory.CONFIG, ) IDENTIFY_BUTTON_DESCRIPTION = ButtonEntityDescription( key=IDENTIFY, name="Identify", - entity_category=EntityCategory.DIAGNOSTIC, + entity_category=EntityCategory.CONFIG, )