diff --git a/bioimageio_collection_backoffice/common.py b/bioimageio_collection_backoffice/common.py index 941c81c..aa07154 100644 --- a/bioimageio_collection_backoffice/common.py +++ b/bioimageio_collection_backoffice/common.py @@ -10,4 +10,6 @@ class Node( validate_assignment=True, validate_default=False, ): + """""" # avoid inheriting docstring from `pydantic.BaseModel` + pass diff --git a/bioimageio_collection_backoffice/db_structure/compatibility.py b/bioimageio_collection_backoffice/db_structure/compatibility.py index ebc0f3e..400599d 100644 --- a/bioimageio_collection_backoffice/db_structure/compatibility.py +++ b/bioimageio_collection_backoffice/db_structure/compatibility.py @@ -8,6 +8,10 @@ class CompatibilityReport(Node, frozen=True, extra="allow"): + """Used to report on the compatibility of resource description + in the bioimageio collection + """ + tool: Annotated[str, Field(exclude=True, pattern=r"^[^_]+_[^_]+$")] """toolname (including version separated by an underscore)"""