Skip to content

Commit 8be8524

Browse files
authored
Fix freeze entity description (home-assistant#106418)
1 parent 9b740c1 commit 8be8524

File tree

1 file changed

+1
-1
lines changed
  • homeassistant/components/vodafone_station

1 file changed

+1
-1
lines changed

homeassistant/components/vodafone_station/sensor.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class VodafoneStationBaseEntityDescription:
3434
is_suitable: Callable[[dict], bool] = lambda val: True
3535

3636

37-
@dataclass(frozen=True)
37+
@dataclass(frozen=True, kw_only=True)
3838
class VodafoneStationEntityDescription(
3939
VodafoneStationBaseEntityDescription, SensorEntityDescription
4040
):

0 commit comments

Comments
 (0)