11 lines
192 B
Python
11 lines
192 B
Python
from enum import Enum
|
|
|
|
|
|
class MathQATask(Enum):
|
|
PROBABILITY = "probability"
|
|
GEOMETRY = "geometry"
|
|
PHYSICS = "physics"
|
|
GAIN = "gain"
|
|
GENERAL = "general"
|
|
OTHER = "other"
|