summaryrefslogtreecommitdiff
path: root/robot
diff options
context:
space:
mode:
authorJure Žabkar <jure.zabkar@fri.uni-lj.si>2015-10-14 15:38:37 +0200
committerJure Žabkar <jure.zabkar@fri.uni-lj.si>2015-10-14 15:38:37 +0200
commit3bcdcda1631abe6fed0eb0fa0ea608a7170274bd (patch)
tree0623fa7bdd8e2b4c27641d9e08cc535e5097e395 /robot
parenta86a6ca92d315dedf3ce4d5035a4c38178f8b531 (diff)
fixed: TabError: inconsistent use of tabs and spaces in indentation
Diffstat (limited to 'robot')
-rw-r--r--robot/problems/introduction/followline/common.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/robot/problems/introduction/followline/common.py b/robot/problems/introduction/followline/common.py
index 0fc6704..d61d4c1 100644
--- a/robot/problems/introduction/followline/common.py
+++ b/robot/problems/introduction/followline/common.py
@@ -69,8 +69,8 @@ def hint( code):
if not (has_token_sequence(tokens, ['move_steering', '(']) and 'off' in code):
return [{'id': 'moveTankOff'}]
-
- if not (has_token_sequence(tokens, ['color_sensor_measure', '(']) and 'reflected_light_intensity' in code):
+
+ if not (has_token_sequence(tokens, ['color_sensor_measure', '(']) and 'reflected_light_intensity' in code):
return [{'id': 'colorSensorMeasureRLI'}]
if not has_token_sequence(tokens, ['while']):