Skip to content

Commit ec97d6b

Browse files
Fixedblank line issus at EOF so Travis can run.
1 parent 87095f6 commit ec97d6b

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

adafruit_esp32spi/adafruit_esp32spi.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -761,4 +761,5 @@ def set_analog_write(self, pin, analog_value):
761761
resp = self._send_command_get_response(_SET_ANALOG_WRITE_CMD,
762762
((pin,), (value,)))
763763
if resp[0][0] != 1:
764-
raise RuntimeError("Failed to write to pin")
764+
raise RuntimeError("Failed to write to pin")
765+

examples/server/esp32spi_wsgiserver.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,4 +214,5 @@ def led_color(environ): # pylint: disable=unused-argument
214214
except (ValueError, RuntimeError) as e:
215215
print("Failed to update server, restarting ESP32\n", e)
216216
wifi.reset()
217-
continue
217+
continue
218+

0 commit comments

Comments
 (0)