From 3bcdcda1631abe6fed0eb0fa0ea608a7170274bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=BDabkar?= Date: Wed, 14 Oct 2015 15:38:37 +0200 Subject: fixed: TabError: inconsistent use of tabs and spaces in indentation --- robot/problems/introduction/followline/common.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'robot') 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']): -- cgit v1.2.1