1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-24 03:54:20 +00:00

update enum

This commit is contained in:
Steffo 2018-12-06 16:57:08 +01:00
parent 26830f6b9b
commit 30b79ff807

16
db.py
View file

@ -332,13 +332,15 @@ class Dota(Base):
class LeagueOfLegendsRanks(enum.Enum): class LeagueOfLegendsRanks(enum.Enum):
BRONZE = 0 IRON = 0
SILVER = 1 BRONZE = 1
GOLD = 2 SILVER = 2
PLATINUM = 3 GOLD = 3
DIAMOND = 4 PLATINUM = 4
MASTER = 5 DIAMOND = 5
CHALLENGER = 6 MASTER = 6
GRANDMASTER = 7
CHALLENGER = 8
class RomanNumerals(enum.Enum): class RomanNumerals(enum.Enum):