Skip to content

Commit

Permalink
prefer set over tuple
Browse files Browse the repository at this point in the history
  • Loading branch information
cmyui committed Jun 30, 2024
1 parent 2cac8b4 commit 1e7795b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/usecases/akatsuki_beatmaps.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from app.repositories.akatsuki_beatmaps import AkatsukiBeatmap

IGNORED_BEATMAP_CHARS = dict.fromkeys(map(ord, r':\/*<>?"|'), None)
FROZEN_STATUSES = (RankedStatus.RANKED, RankedStatus.APPROVED, RankedStatus.LOVED)
FROZEN_STATUSES = {RankedStatus.RANKED, RankedStatus.APPROVED, RankedStatus.LOVED}


def _parse_akatsuki_beatmap_from_osu_api_v1_response(
Expand Down

0 comments on commit 1e7795b

Please sign in to comment.