Skip to content

Commit a562876

Browse files
committed
Fix emac's bad continuation indents
1 parent 6bbaed4 commit a562876

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

NeoTrellisM4_Dice/code.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -131,8 +131,8 @@ def shaken():
131131
x, y, z = accelerometer.acceleration
132132
if previous_reading[0] is not None:
133133
result = (math.fabs(previous_reading[0] - x) > bound and
134-
math.fabs(previous_reading[1] - y) > bound and
135-
math.fabs(previous_reading[2] - z) > bound)
134+
math.fabs(previous_reading[1] - y) > bound and
135+
math.fabs(previous_reading[2] - z) > bound)
136136
previous_reading = (x, y, z)
137137
return result
138138

0 commit comments

Comments
 (0)