diff --git a/custom_components/spook/ectoplasms/cloud/switch.py b/custom_components/spook/ectoplasms/cloud/switch.py index f225800d..70b28123 100644 --- a/custom_components/spook/ectoplasms/cloud/switch.py +++ b/custom_components/spook/ectoplasms/cloud/switch.py @@ -21,7 +21,7 @@ from homeassistant.helpers.entity_platform import AddEntitiesCallback -@dataclass(frozen=True, kw_only=True) +@dataclass(kw_only=True) class HomeAssistantCloudSpookSwitchEntityDescription( SpookEntityDescription, SwitchEntityDescription, diff --git a/custom_components/spook/ectoplasms/homeassistant/button.py b/custom_components/spook/ectoplasms/homeassistant/button.py index 2dd2a787..b9c36679 100644 --- a/custom_components/spook/ectoplasms/homeassistant/button.py +++ b/custom_components/spook/ectoplasms/homeassistant/button.py @@ -27,7 +27,7 @@ from homeassistant.helpers.entity_platform import AddEntitiesCallback -@dataclass(frozen=True, kw_only=True) +@dataclass(kw_only=True) class HomeAssistantSpookButtonEntityDescription( SpookEntityDescription, ButtonEntityDescription, diff --git a/custom_components/spook/ectoplasms/homeassistant/sensor.py b/custom_components/spook/ectoplasms/homeassistant/sensor.py index aaf2394b..b7d6df74 100644 --- a/custom_components/spook/ectoplasms/homeassistant/sensor.py +++ b/custom_components/spook/ectoplasms/homeassistant/sensor.py @@ -46,7 +46,7 @@ from homeassistant.helpers.entity_platform import AddEntitiesCallback -@dataclass(frozen=True, kw_only=True) +@dataclass(kw_only=True) class HomeAssistantSpookSensorEntityDescription( SpookEntityDescription, SensorEntityDescription, diff --git a/custom_components/spook/ectoplasms/repairs/button.py b/custom_components/spook/ectoplasms/repairs/button.py index c908c363..e354ba58 100644 --- a/custom_components/spook/ectoplasms/repairs/button.py +++ b/custom_components/spook/ectoplasms/repairs/button.py @@ -17,7 +17,7 @@ from homeassistant.helpers.entity_platform import AddEntitiesCallback -@dataclass(frozen=True, kw_only=True) +@dataclass(kw_only=True) class RepairsSpookButtonEntityDescription( SpookEntityDescription, ButtonEntityDescription, diff --git a/custom_components/spook/ectoplasms/repairs/sensor.py b/custom_components/spook/ectoplasms/repairs/sensor.py index 0f1de52e..57fe2cb1 100644 --- a/custom_components/spook/ectoplasms/repairs/sensor.py +++ b/custom_components/spook/ectoplasms/repairs/sensor.py @@ -23,7 +23,7 @@ from homeassistant.helpers.entity_platform import AddEntitiesCallback -@dataclass(frozen=True, kw_only=True) +@dataclass(kw_only=True) class RepairsSpookSensorEntityDescription( SpookEntityDescription, SensorEntityDescription,