From 8be8524955727385cd963536de259f1fcc84cb85 Mon Sep 17 00:00:00 2001 From: Simone Chemelli Date: Tue, 26 Dec 2023 18:59:40 +0100 Subject: [PATCH] Fix freeze entity description (#106418) --- homeassistant/components/vodafone_station/sensor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/vodafone_station/sensor.py b/homeassistant/components/vodafone_station/sensor.py index fcf26c6eb55..b383c2d193a 100644 --- a/homeassistant/components/vodafone_station/sensor.py +++ b/homeassistant/components/vodafone_station/sensor.py @@ -34,7 +34,7 @@ class VodafoneStationBaseEntityDescription: is_suitable: Callable[[dict], bool] = lambda val: True -@dataclass(frozen=True) +@dataclass(frozen=True, kw_only=True) class VodafoneStationEntityDescription( VodafoneStationBaseEntityDescription, SensorEntityDescription ):