Skip to content

Commit

Permalink
fix: add comments to clarify reward types in enums
Browse files Browse the repository at this point in the history
  • Loading branch information
staciax committed Jan 10, 2025
1 parent 8cb84c6 commit 337b83d
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions valorant/enums.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,13 +121,15 @@ class RelationType(StrEnum):


class RewardType(StrEnum):
equippable_charm_level = 'EquippableCharmLevel'
# fmt: off
equippable_charm_level = 'EquippableCharmLevel' # buddy level
currency = 'Currency'
player_card = 'PlayerCard'
player_title = 'Title'
equippable_skin_level = 'EquippableSkinLevel'
equippable_skin_level = 'EquippableSkinLevel' # skin level
spray = 'Spray'
totem = 'Totem'
totem = 'Totem' # flex
# fmt: on


class SeasonType(StrEnum):
Expand Down

0 comments on commit 337b83d

Please sign in to comment.