Skip to content

Commit

Permalink
fix!: Change type of gi.New.character_ids to list[str | int]
Browse files Browse the repository at this point in the history
  • Loading branch information
seriaati committed Nov 21, 2024
1 parent 5f40c04 commit 998de19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hakushin/models/gi/new.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
class New(APIModel):
"""Genshin Impact new stuff."""

character_ids: list[int] = Field(alias="character")
character_ids: list[str | int] = Field(alias="character")
weapon_ids: list[int] = Field(alias="weapon")
artifact_set_ids: list[int] = Field(alias="artifact")
monster_ids: list[int] = Field(alias="monster")
Expand Down

0 comments on commit 998de19

Please sign in to comment.