Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
staciax committed Dec 29, 2024
1 parent a785016 commit 9490dc9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions valorant/models/seasons.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class Season(BaseUUIDModel):
async def fetch_parent(self, *, client: Client) -> Season | None:
if self.parent_uuid is None:
return None
return await client.fetch_season(self.parent_uuid)
return await client.fetch_season(str(self.parent_uuid))


class Border(BaseUUIDModel):
Expand All @@ -79,4 +79,4 @@ class Competitive(BaseUUIDModel):
asset_path: str = Field(alias='assetPath')

async def fetch_season(self, *, client: Client) -> Season | None:
return await client.fetch_season(self.season_uuid)
return await client.fetch_season(str(self.season_uuid))

0 comments on commit 9490dc9

Please sign in to comment.