Skip to content

Commit

Permalink
Add nested unique beatmap pbar for recalculate
Browse files Browse the repository at this point in the history
  • Loading branch information
Syriiin committed Jun 3, 2024
1 parent 6912296 commit 9d25f50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion profiles/management/commands/recalculate.py
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ def recalculate_scores_v2(
initial=initial,
smoothing=0,
) as pbar:
for unique_beatmap in unique_beatmaps:
for unique_beatmap in tqdm(unique_beatmaps, desc="Unique beatmaps"):
unique_beatmap_scores = scores_to_recalculate.filter(
beatmap_id=unique_beatmap["beatmap_id"], mods=unique_beatmap["mods"]
)
Expand Down

0 comments on commit 9d25f50

Please sign in to comment.