Fix freeze entity description (#106418)

This commit is contained in:
Simone Chemelli 2023-12-26 18:59:40 +01:00 committed by GitHub
parent 9b740c1111
commit 8be8524955
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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
):