We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae1bdac commit 0b21be2Copy full SHA for 0b21be2
adafruit_wiznet5k/adafruit_wiznet5k_socket.py
@@ -410,7 +410,7 @@ def accept(
410
current_socknum = self._socknum
411
# Create a new socket object and swap socket nums, so we can continue listening
412
client_sock = socket()
413
- self._socknum = client_sock._socknum
+ self._socknum = client_sock._socknum # pylint: disable=protected-access
414
client_sock._socknum = current_socknum # pylint: disable=protected-access
415
self._bind((None, self._listen_port))
416
self.listen()
0 commit comments