summaryrefslogtreecommitdiff
path: root/robot/common.py
blob: 70f4da4aa18272e7d31ec8bb8f977256174cf74a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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 []