File size: 339 Bytes
138ebd0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# server/__init__.py
# Re-exports all public symbols from server.app so that
# `from server import app, grade, ...` still works in tests.
from server.app import (  # noqa: F401
    app,
    grade,
    _normalize_type,
    _sev_rank,
    _markers_found,
    _sanitization_ok,
    TASK_EASY,
    TASK_MEDIUM,
    TASK_HARD,
    ALL_TASKS,
)