Add enum for supported formats

This commit is contained in:
The Magician 2024-03-25 15:40:41 +00:00
parent c8056c8a31
commit 021c98a71c
1 changed files with 18 additions and 0 deletions

View File

@ -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"