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