Skip to content

Commit

Permalink
Make release name nilable for now (#910)
Browse files Browse the repository at this point in the history
  • Loading branch information
paramsingh authored Jun 10, 2020
1 parent c629815 commit adb83f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion listenbrainz/db/model/user_release_stat.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class UserReleaseRecord(pydantic.BaseModel):
artist_mbids: List[str] = []
release_mbid: Optional[str]
release_msid: Optional[str]
release_name: str
release_name: Optional[str] # TODO: Make this required once https://tickets.metabrainz.org/browse/LB-621 is fixed
listen_count: int
artist_name: str

Expand Down

0 comments on commit adb83f0

Please sign in to comment.