Skip to content

Commit

Permalink
Fix HollowZero validation errors
Browse files Browse the repository at this point in the history
  • Loading branch information
seriaati committed Nov 12, 2024
1 parent 559150d commit f7ad414
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions genshin/models/zzz/chronicle/notes.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ class SurveyPoints(APIModel):
class HollowZero(APIModel):
"""Hollow Zero in ZZZ sticky notes model."""

bounty_commission: BountyCommission
investigation_point: SurveyPoints = Aliased("survey_points")
bounty_commission: typing.Optional[BountyCommission] = None
investigation_point: typing.Optional[SurveyPoints] = Aliased("survey_points", default=None)


class ZZZNotes(APIModel):
Expand Down

0 comments on commit f7ad414

Please sign in to comment.