mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-24 03:54:20 +00:00
update enum
This commit is contained in:
parent
26830f6b9b
commit
30b79ff807
1 changed files with 9 additions and 7 deletions
16
db.py
16
db.py
|
@ -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):
|
||||||
|
|
Loading…
Reference in a new issue