diff --git a/hsmodels/schemas/resource.py b/hsmodels/schemas/resource.py index 7622ee3..4297f66 100644 --- a/hsmodels/schemas/resource.py +++ b/hsmodels/schemas/resource.py @@ -27,8 +27,6 @@ from hsmodels.schemas.validators import list_not_empty, parse_identifier, parse_sources, parse_spatial_coverage - - class ResourceMetadataIn(BaseMetadata): """ A class used to represent the metadata for a resource that can be modified @@ -48,7 +46,7 @@ class Config: language: str = Field( default="eng", title="Language", - description="A 3-character string for the language in which the metadata and content of a resource are expressed" + description="A 3-character string for the language in which the metadata and content of a resource are expressed", ) subjects: List[str] = Field( default=[], title="Subject keywords", description="A list of keyword strings expressing the topic of a resource" @@ -80,7 +78,8 @@ class Config: ) rights: Rights = Field( default_factory=Rights.Creative_Commons_Attribution_CC_BY, - title="Rights", description="An object containing information about rights held in an over a resource" + title="Rights", + description="An object containing information about rights held in an over a resource", ) awards: List[AwardInfo] = Field( default=[],