Skip to content

Commit 43cb366

Browse files
committed
Readd appending data to list
1 parent eec2c72 commit 43cb366

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_esp32spi/adafruit_esp32spi_socket.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ def recv_into(self, buffer, nbytes=0):
184184
if avail:
185185
stamp = time.monotonic()
186186
recv = _the_interface.socket_read(self._socknum, min(to_read, avail))
187-
# received.append(recv)
187+
received.append(recv)
188188
start = len(buffer) - to_read
189189
to_read -= len(recv)
190190
end = len(buffer) - to_read

0 commit comments

Comments
 (0)