Docstring

This commit is contained in:
epenet 2025-07-30 15:35:27 +00:00
parent a878bec668
commit 5df3aa80d5

View File

@ -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")