diff --git a/pyproject.toml b/pyproject.toml index 83c2236..bb34f48 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "osuclient" -version = "0.6.2" +version = "0.6.3" description = "Client for osu! API" readme = "README.md" authors = [ diff --git a/src/osuclient/schema.py b/src/osuclient/schema.py index 4b25b78..e4e450f 100644 --- a/src/osuclient/schema.py +++ b/src/osuclient/schema.py @@ -335,9 +335,9 @@ class Score(CustomModel): type: str user_id: int current_user_attributes: CurrentUserAttributes - beatmap: Beatmap - beatmapset: Beatmapset - user: User + beatmap: Beatmap | None = None + beatmapset: Beatmapset | None = None + user: User | None = None weight: Weight | None = None rank_global: int | None = None