Skip to content

Commit

Permalink
Merge pull request #22 from hydroshare/key-value-not-required
Browse files Browse the repository at this point in the history
Key value not required
  • Loading branch information
sblack-usu authored Nov 6, 2021
2 parents bb077c4 + 430d557 commit f446187
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions hsmodels/schemas/fields.py
Original file line number Diff line number Diff line change
Expand Up @@ -974,5 +974,5 @@ class AdditionalMetadata(BaseMetadata):
class Config:
title = "Additional metadata"

key: str = Field(title="Key", description="A string for the additional metadata key")
value: str = Field(title="Value", description="A string for the additional metadata value")
key: str = Field(title="Key", description="A string for the additional metadata key", default="")
value: str = Field(title="Value", description="A string for the additional metadata value", default="")
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

setup(
name='hsmodels',
version='0.3.5',
version='0.3.6',
packages=find_packages(include=['hsmodels', 'hsmodels.*', 'hsmodels.schemas.*', 'hsmodels.schemas.rdf.*'],
exclude=("tests",)),
install_requires=[
Expand Down

0 comments on commit f446187

Please sign in to comment.