Skip to content

Commit

Permalink
refactor: competitive_tiers_uuid types to UUID
Browse files Browse the repository at this point in the history
  • Loading branch information
staciax committed Dec 29, 2024
1 parent 8ac952a commit ed0f38d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion valorant/models/seasons.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ class Competitive(BaseUUIDModel):
start_time: datetime = Field(alias='startTime')
end_time: datetime = Field(alias='endTime')
season_uuid: UUID = Field(alias='seasonUuid')
competitive_tiers_uuid: str = Field(alias='competitiveTiersUuid')
competitive_tiers_uuid: UUID = Field(alias='competitiveTiersUuid')
borders: list[Border] | None
asset_path: str = Field(alias='assetPath')

Expand Down

0 comments on commit ed0f38d

Please sign in to comment.