Fix emac's bad continuation indents
This commit is contained in:
parent
6bbaed41d5
commit
a562876593
1 changed files with 2 additions and 2 deletions
|
|
@ -131,8 +131,8 @@ def shaken():
|
||||||
x, y, z = accelerometer.acceleration
|
x, y, z = accelerometer.acceleration
|
||||||
if previous_reading[0] is not None:
|
if previous_reading[0] is not None:
|
||||||
result = (math.fabs(previous_reading[0] - x) > bound and
|
result = (math.fabs(previous_reading[0] - x) > bound and
|
||||||
math.fabs(previous_reading[1] - y) > bound and
|
math.fabs(previous_reading[1] - y) > bound and
|
||||||
math.fabs(previous_reading[2] - z) > bound)
|
math.fabs(previous_reading[2] - z) > bound)
|
||||||
previous_reading = (x, y, z)
|
previous_reading = (x, y, z)
|
||||||
return result
|
return result
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue