File size: 344 Bytes
2b3313a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
"""

Backward-compatible grader re-exports.



The canonical graders now live in server/graders.py.

This file re-exports them so existing imports still work.

"""

from server.graders import grade_easy, grade_medium, grade_hard, EpisodeGrader

__all__ = [
    "grade_easy",
    "grade_medium",
    "grade_hard",
    "EpisodeGrader",
]