Add enum for supported formats
This commit is contained in:
parent
c8056c8a31
commit
021c98a71c
|
@ -0,0 +1,18 @@
|
|||
#!/usr/bin/python3
|
||||
|
||||
from enum import Enum
|
||||
|
||||
class Format(Enum):
|
||||
STANDARD = "standard"
|
||||
MODERN = "modern"
|
||||
PIONEER = "pioneer"
|
||||
HISTORIC = "historic"
|
||||
EXPLORER = "explorer"
|
||||
TIMELESS = "timeless"
|
||||
ALCHEMY = "alchemy"
|
||||
PAUPER = "pauper"
|
||||
LEGACY = "legacy"
|
||||
VINTAGE = "vintage"
|
||||
PENNY_DREADFUL = "penny_dreadful"
|
||||
COMMANDER_1V1 = "commander_1v1"
|
||||
COMMANDER = "commander"
|
Loading…
Reference in New Issue