Skip to content

Commit

Permalink
fix: hotfix score_type nullable in pinattributes (#236)
Browse files Browse the repository at this point in the history
  • Loading branch information
NiceAesth authored Apr 10, 2024
1 parent a815c3d commit 21614f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aiosu/models/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ class HTMLBody(BaseModel):
class PinAttributes(BaseModel):
is_pinned: bool
score_id: int
score_type: ScoreType
score_type: Optional[ScoreType] = None


class CurrentUserAttributes(BaseModel):
Expand Down

0 comments on commit 21614f7

Please sign in to comment.