Skip to content

Commit f437871

Browse files
committed
Formatting
1 parent 138bccb commit f437871

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_esp32spi/adafruit_esp32spi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -699,7 +699,7 @@ def socket_write(self, socket_num, buffer, conn_mode=TCP_MODE):
699699
sent = 0
700700
totalChunks = (len(buffer) // 64) + 1
701701
send_command = _SEND_DATA_TCP_CMD
702-
if conn_mode == UDP_MODE: # UDP requires a different command to write
702+
if conn_mode == UDP_MODE: # UDP requires a different command to write
703703
send_command = _INSERT_DATABUF_TCP_CMD
704704
for chunk in range(totalChunks):
705705
resp = self._send_command_get_response(

0 commit comments

Comments
 (0)