Skip to content

Commit 4c9372b

Browse files
committed
fix line length in comment
1 parent 211e7cf commit 4c9372b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

adafruit_requests.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -648,8 +648,8 @@ def request( # noqa: PLR0912,PLR0913,PLR0915 Too many branches,Too many argumen
648648
# Read the H of "HTTP/1.1" to make sure the socket is alive. send can appear to work
649649
# even when the socket is closed.
650650
# Both recv/recv_into can raise OSError; when that happens, we need to call
651-
# _connection_manager.close_socket(socket) or future calls to _connection_manager.get_socket()
652-
# for the same parameter set will fail
651+
# _connection_manager.close_socket(socket) or future calls to
652+
# _connection_manager.get_socket() for the same parameter set will fail
653653
try:
654654
if hasattr(socket, "recv"):
655655
result = socket.recv(1)

0 commit comments

Comments
 (0)