summaryrefslogtreecommitdiff
path: root/robot/problems/introduction/spotturn90/common.py
diff options
context:
space:
mode:
authorJure Žabkar <jure.zabkar@fri.uni-lj.si>2015-12-15 10:34:40 +0100
committerJure Žabkar <jure.zabkar@fri.uni-lj.si>2015-12-15 13:17:48 +0100
commitb4e46b75f5e2a890b41d2e20a89767590e54ccb4 (patch)
treed9ee2fd8c1543bb4f7fd9db0bace83efc01c999e /robot/problems/introduction/spotturn90/common.py
parentbe94b55b835283de53c686343164641e15abe806 (diff)
Dodani plani za robotske probleme.
Diffstat (limited to 'robot/problems/introduction/spotturn90/common.py')
-rw-r--r--robot/problems/introduction/spotturn90/common.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/robot/problems/introduction/spotturn90/common.py b/robot/problems/introduction/spotturn90/common.py
index add6643..e01de39 100644
--- a/robot/problems/introduction/spotturn90/common.py
+++ b/robot/problems/introduction/spotturn90/common.py
@@ -10,9 +10,6 @@ number = 3
visible = True
solution = '''\
-from ev3dev import *
-from mindstorms_widgets import mindstorms_widgets
-
robot = mindstorms_widgets()
robot.connect_motor( 'left' )
robot.connect_motor( 'right' )
@@ -30,7 +27,7 @@ hint_type = {
'seconds': Hint('seconds'),
}
-def hint( code):
+def hint( code ):
tokens = get_tokens(code)
# if code does not include mindstorms_widgets(), a student gets a hint that the robot should be somehow represented in the program