Skip to content

Commit

Permalink
feat: Make memos type allow list of strings (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
simentha committed Oct 20, 2023
1 parent f05cdd0 commit 71a2413
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion atmos_validation/schemas/metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class HindcastMetadata(CommonMetadata):
calibration: str
delivery_date: str
forcing_data: str
memos: str
memos: Union[str, List[str]]
modelling_software: str
model_name: str
nests: Union[str, List[str]]
Expand Down
2 changes: 1 addition & 1 deletion docs/conventions.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ class HindcastMetadata(CommonMetadata):
calibration: str
delivery_date: str
forcing_data: str
memos: str
memos: Union[str, List[str]]
modelling_software: str
model_name: str
nests: Union[str, List[str]]
Expand Down

0 comments on commit 71a2413

Please sign in to comment.