Skip to content

Commit

Permalink
run formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
sblack-usu committed Nov 4, 2021
1 parent 1ccf674 commit 2134baa
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions hsmodels/schemas/resource.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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"
Expand Down Expand Up @@ -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=[],
Expand Down

0 comments on commit 2134baa

Please sign in to comment.