diff --git a/python/src/uagents/models.py b/python/src/uagents/models.py index 5f886bf31..7c3089f20 100644 --- a/python/src/uagents/models.py +++ b/python/src/uagents/models.py @@ -5,11 +5,8 @@ class Model(BaseModel): - """Base class for all message models.""" - @staticmethod def build_schema_digest(model: Union["Model", Type["Model"]]) -> str: - """Builds the schema digest for a given model.""" digest = ( hashlib.sha256( model.schema_json(indent=None, sort_keys=True).encode("utf8")