diff --git a/homeassistant/components/gios/sensor.py b/homeassistant/components/gios/sensor.py index 9ca34b2e77c9f63a9fd2862a675ba22ae0f5bb33..99c1775beef6c33ca509b72304f805afb5f3b64d 100644 --- a/homeassistant/components/gios/sensor.py +++ b/homeassistant/components/gios/sensor.py @@ -42,17 +42,11 @@ from .const import ( _LOGGER = logging.getLogger(__name__) -@dataclass(frozen=True) -class GiosSensorRequiredKeysMixin: - """Class for GIOS entity required keys.""" - - value: Callable[[GiosSensors], StateType] - - -@dataclass(frozen=True) -class GiosSensorEntityDescription(SensorEntityDescription, GiosSensorRequiredKeysMixin): +@dataclass(frozen=True, kw_only=True) +class GiosSensorEntityDescription(SensorEntityDescription): """Class describing GIOS sensor entities.""" + value: Callable[[GiosSensors], StateType] subkey: str | None = None