fix(beatmap): always retry when status_code >= 400

This commit is contained in:
MingxuanGame
2025-08-17 18:14:34 +00:00
parent d37cb44c91
commit 1bc4687a0e
2 changed files with 5 additions and 7 deletions

View File

@@ -1,8 +1,8 @@
from __future__ import annotations
from .beatmap import BeatmapFetcher
from .beatmap_raw import BeatmapRawFetcher
from .beatmapset import BeatmapsetFetcher
from .osu_dot_direct import BeatmapRawFetcher
class Fetcher(BeatmapFetcher, BeatmapsetFetcher, BeatmapRawFetcher):