Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter Bestoso authored and Peter Bestoso committed Mar 8, 2017
1 parent a7b76b3 commit 8daeb96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def all_lights_half():
if (LIGHT_BRIGHTS[i] > HALF_BRIGHTNESS):
done = False
set_light(i, LIGHT_BRIGHTS[i] - INCR)
else LIGHT_BRIGHTS[i] < HALF_BRIGHTNESS:
else if LIGHT_BRIGHTS[i] < HALF_BRIGHTNESS:
done = False
set_light(i, LIGHT_BRIGHTS[i] + INCR)
if done:
Expand Down

0 comments on commit 8daeb96

Please sign in to comment.