This commit is contained in:
2025-12-15 19:38:14 +03:00
parent 80c541e195
commit 0fbcca315b
2 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
[project] [project]
name = "osuclient" name = "osuclient"
version = "0.6.2" version = "0.6.3"
description = "Client for osu! API" description = "Client for osu! API"
readme = "README.md" readme = "README.md"
authors = [ authors = [

View File

@ -335,9 +335,9 @@ class Score(CustomModel):
type: str type: str
user_id: int user_id: int
current_user_attributes: CurrentUserAttributes current_user_attributes: CurrentUserAttributes
beatmap: Beatmap beatmap: Beatmap | None = None
beatmapset: Beatmapset beatmapset: Beatmapset | None = None
user: User user: User | None = None
weight: Weight | None = None weight: Weight | None = None
rank_global: int | None = None rank_global: int | None = None