Fix emac's bad continuation indents

This commit is contained in:
Dave Astels 2018-11-16 16:14:08 -05:00
parent 6bbaed41d5
commit a562876593

View file

@ -131,8 +131,8 @@ def shaken():
x, y, z = accelerometer.acceleration
if previous_reading[0] is not None:
result = (math.fabs(previous_reading[0] - x) > bound and
math.fabs(previous_reading[1] - y) > bound and
math.fabs(previous_reading[2] - z) > bound)
math.fabs(previous_reading[1] - y) > bound and
math.fabs(previous_reading[2] - z) > bound)
previous_reading = (x, y, z)
return result