Skip to content

Commit

Permalink
revert unwanted changes in models studies.py
Browse files Browse the repository at this point in the history
  • Loading branch information
bisgaard-itis committed Nov 7, 2024
1 parent e914100 commit fa90f20
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@

class Study(BaseModel):
uid: StudyID
title: str = None # TODO: should be nullable
description: str = None # TODO: should be nullable
title: str | None = None
description: str | None = None

@classmethod
def compose_resource_name(cls, study_key) -> api_resources.RelativeResourceName:
Expand Down

0 comments on commit fa90f20

Please sign in to comment.