From 71696380a65435460479395bc59fed5131600b59 Mon Sep 17 00:00:00 2001 From: Julian Pawlowski Date: Sun, 12 Apr 2026 20:37:53 +0000 Subject: [PATCH] refactor(definitions): remove diagnostic entity category from day pattern sensors Updated sensor definitions to enhance clarity and maintain consistency by removing the diagnostic entity category from day pattern sensors. Impact: No user-facing changes. --- custom_components/tibber_prices/sensor/definitions.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/custom_components/tibber_prices/sensor/definitions.py b/custom_components/tibber_prices/sensor/definitions.py index c01e6cc..9802689 100644 --- a/custom_components/tibber_prices/sensor/definitions.py +++ b/custom_components/tibber_prices/sensor/definitions.py @@ -1018,7 +1018,6 @@ DAY_PATTERN_SENSORS = ( "mixed", ], state_class=None, - entity_category=EntityCategory.DIAGNOSTIC, entity_registry_enabled_default=False, ), SensorEntityDescription( @@ -1037,7 +1036,6 @@ DAY_PATTERN_SENSORS = ( "mixed", ], state_class=None, - entity_category=EntityCategory.DIAGNOSTIC, entity_registry_enabled_default=True, ), SensorEntityDescription( @@ -1056,7 +1054,6 @@ DAY_PATTERN_SENSORS = ( "mixed", ], state_class=None, - entity_category=EntityCategory.DIAGNOSTIC, entity_registry_enabled_default=False, ), )