Skip to content

Commit

Permalink
feat: add case field to meta information
Browse files Browse the repository at this point in the history
  • Loading branch information
sasanjac committed Jul 27, 2023
1 parent ab63d11 commit 7355268
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions psdm/meta.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
class Meta(Base):
version: t.ClassVar[str] = VERSION
name: str
date: datetime.date # date of export
date: datetime.date
id: uuid.UUID = pydantic.Field(default_factory=uuid.uuid4) # noqa: A003
project: str | None = None # project the export is related to
project: str | None = None
case: str | None = None

0 comments on commit 7355268

Please sign in to comment.