Skip to content

Commit 866e79e

Browse files
committed
Run pre-commit
1 parent 4cce56a commit 866e79e

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

adafruit_requests.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,8 @@ def connect(
8080
conntype: Optional[int] = ...,
8181
) -> None:
8282
"""Connect to a remote socket at the provided (host, port) address. The conntype
83-
kwarg optionally may indicate SSL or not, depending on the underlying interface."""
83+
kwarg optionally may indicate SSL or not, depending on the underlying interface.
84+
"""
8485

8586
class LegacyCircuitPythonSocketType(CommonCircuitPythonSocketType, Protocol):
8687
"""Describes the structure a legacy CircuitPython socket type must have."""
@@ -96,7 +97,8 @@ class SupportsRecvWithFlags(Protocol):
9697
def recv(self, bufsize: int = ..., flags: int = ...) -> bytes:
9798
"""Receive data from the socket. The return value is a bytes object representing
9899
the data received. The maximum amount of data to be received at once is specified
99-
by bufsize. The meaning of the optional flags kwarg is implementation-specific."""
100+
by bufsize. The meaning of the optional flags kwarg is implementation-specific.
101+
"""
100102

101103
class SupportsRecvInto(Protocol):
102104
"""Describes a type that possesses a socket recv_into() method."""

0 commit comments

Comments
 (0)