From d817a5bfbe1b38d7364498c0e71cd07040c4e534 Mon Sep 17 00:00:00 2001 From: James Riehl <33920192+jrriehl@users.noreply.github.com> Date: Thu, 14 Sep 2023 16:45:25 +0100 Subject: [PATCH] fix: remove docstring that changed all model digests (#157) --- python/src/uagents/models.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/python/src/uagents/models.py b/python/src/uagents/models.py index 5f886bf3..7c3089f2 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")