summaryrefslogtreecommitdiff
path: root/robot/common.py
blob: 1e7e8186d08e064bf32e3aa6217cfa018936de68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# coding=utf-8

from server.hints import Hint, HintSequence

id = 3

hint_type = {
    'no_hint': Hint('no_hint'),
    'system_error': Hint('system_error'),
    'test_results': Hint('test_results'),
}

def hint(program):
    return []