From 5df3aa80d52b23ce5e37d7018236be87a91275b7 Mon Sep 17 00:00:00 2001 From: epenet <6771947+epenet@users.noreply.github.com> Date: Wed, 30 Jul 2025 15:35:27 +0000 Subject: [PATCH] Docstring --- homeassistant/components/tuya/models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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")