mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44: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):
|
||||
BRONZE = 0
|
||||
SILVER = 1
|
||||
GOLD = 2
|
||||
PLATINUM = 3
|
||||
DIAMOND = 4
|
||||
MASTER = 5
|
||||
CHALLENGER = 6
|
||||
IRON = 0
|
||||
BRONZE = 1
|
||||
SILVER = 2
|
||||
GOLD = 3
|
||||
PLATINUM = 4
|
||||
DIAMOND = 5
|
||||
MASTER = 6
|
||||
GRANDMASTER = 7
|
||||
CHALLENGER = 8
|
||||
|
||||
|
||||
class RomanNumerals(enum.Enum):
|
||||
|
|
Loading…
Reference in a new issue