Labexperiment / tasks /__init__.py
Sbhimraj's picture
Add application file
aab0192
Raw
History Blame Contribute Delete
402 Bytes
"""Task definitions and graders for the Scientific Hypothesis Lab."""
from .task_easy import TASK_EASY, grade_easy
from .task_medium import TASK_MEDIUM, grade_medium
from .task_hard import TASK_HARD, grade_hard
ALL_TASKS = [TASK_EASY, TASK_MEDIUM, TASK_HARD]
__all__ = [
"TASK_EASY",
"TASK_MEDIUM",
"TASK_HARD",
"grade_easy",
"grade_medium",
"grade_hard",
"ALL_TASKS",
]