Skip to content

Commit

Permalink
make obs_id required
Browse files Browse the repository at this point in the history
  • Loading branch information
lewisblake committed Oct 6, 2024
1 parent 841050d commit 76941d7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pyaerocom/aeroval/obsentry.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,12 +98,12 @@ class ObsEntry(BaseModel):
######################
## Required attributes
######################
obs_vars: tuple[str, ...] | str
obs_vert_type: str
obs_vars: str | tuple[str, ...]
obs_id: str | tuple[str, ...]
######################
## Optional attributes
######################
obs_id: str | tuple[str, ...] = ""
# obs_id: str | tuple[str, ...] = ""
obs_ts_type_read: str | dict | None = None
obs_vert_type: Literal["Column", "Profile", "Surface"] = "Surface"
obs_aux_requires: dict[str, dict] = {}
Expand Down

0 comments on commit 76941d7

Please sign in to comment.