diff --git a/homeassistant/components/tuya/models.py b/homeassistant/components/tuya/models.py index 6327f3b46d1..38d3a4d507d 100644 --- a/homeassistant/components/tuya/models.py +++ b/homeassistant/components/tuya/models.py @@ -39,7 +39,6 @@ class IntegerTypeData(TypeInformation): scale: float step: float unit: str | None = None - type: str | None = None @property def max_scaled(self) -> float: @@ -97,7 +96,6 @@ class IntegerTypeData(TypeInformation): scale=float(parsed["scale"]), step=max(float(parsed["step"]), 1), unit=parsed.get("unit"), - type=parsed.get("type"), )