Skip to content

Commit

Permalink
fix line length in comment
Browse files Browse the repository at this point in the history
  • Loading branch information
aggieNick02 committed Sep 27, 2024
1 parent 211e7cf commit 4c9372b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions adafruit_requests.py
Original file line number Diff line number Diff line change
Expand Up @@ -648,8 +648,8 @@ def request( # noqa: PLR0912,PLR0913,PLR0915 Too many branches,Too many argumen
# Read the H of "HTTP/1.1" to make sure the socket is alive. send can appear to work
# even when the socket is closed.
# Both recv/recv_into can raise OSError; when that happens, we need to call
# _connection_manager.close_socket(socket) or future calls to _connection_manager.get_socket()
# for the same parameter set will fail
# _connection_manager.close_socket(socket) or future calls to
# _connection_manager.get_socket() for the same parameter set will fail
try:
if hasattr(socket, "recv"):
result = socket.recv(1)
Expand Down

0 comments on commit 4c9372b

Please sign in to comment.