blob: 4811d459f3bd2a1b9266828de0cb7d37b8535c1e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# coding=utf-8
from server.hints import Hint
id = 3
hint_type = {
'no_hint': Hint('no_hint'),
'system_error': Hint('system_error'),
'test_results': Hint('test_results'),
}
def hint(program):
return []
|