summaryrefslogtreecommitdiff
path: root/robot/common.py
diff options
context:
space:
mode:
authorTimotej Lazar <timotej.lazar@araneo.org>2015-10-01 21:15:05 +0200
committerTimotej Lazar <timotej.lazar@araneo.org>2015-10-01 21:15:05 +0200
commit047792d552872869099cf9bb8c58c576faf933f4 (patch)
treeacbf90e65d2158d31e7edb7f046bd9fcabb4a1f7 /robot/common.py
parent2fefd55550808f630190c89c6d9b3f6bfed3f164 (diff)
Add basic language hint files for robot
Diffstat (limited to 'robot/common.py')
-rw-r--r--robot/common.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/robot/common.py b/robot/common.py
index bbe3c14..45dbfc3 100644
--- a/robot/common.py
+++ b/robot/common.py
@@ -3,7 +3,10 @@
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, solved_problems):
+def hint(program):
return []