diff --git a/homeassistant/components/tuya/models.py b/homeassistant/components/tuya/models.py index b43b7df3616..43e4c04c518 100644 --- a/homeassistant/components/tuya/models.py +++ b/homeassistant/components/tuya/models.py @@ -104,12 +104,12 @@ class ComplexTypeData: @classmethod def from_json(cls, data: str) -> Self: - """Load JSON string and return a BaseTypeData object.""" + """Load JSON string and return a ComplexTypeData object.""" raise NotImplementedError("from_json is not implemented for this type") @classmethod def from_raw(cls, data: str) -> Self: - """Decode base64 string and return a BaseTypeData object.""" + """Decode base64 string and return a ComplexTypeData object.""" raise NotImplementedError("from_raw is not implemented for this type")