feat(score): allow to recalculate all score pp

This commit is contained in:
MingxuanGame
2025-08-14 06:50:17 +00:00
parent c8b6c1fa0e
commit ebbc0b8252
5 changed files with 163 additions and 11 deletions

View File

@@ -2,10 +2,10 @@ from __future__ import annotations
from .beatmap import BeatmapFetcher
from .beatmapset import BeatmapsetFetcher
from .osu_dot_direct import OsuDotDirectFetcher
from .osu_dot_direct import BeatmapRawFetcher
class Fetcher(BeatmapFetcher, BeatmapsetFetcher, OsuDotDirectFetcher):
class Fetcher(BeatmapFetcher, BeatmapsetFetcher, BeatmapRawFetcher):
"""A class that combines all fetchers for easy access."""
pass