Skip to content

Commit cf02852

Browse files
committed
Run pre-commit
1 parent 8261b93 commit cf02852

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

circuitpython_typing/socket.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,8 @@ def connect(
5858
conntype: Optional[int] = ...,
5959
) -> None:
6060
"""Connect to a remote socket at the provided (host, port) address. The conntype
61-
kwarg optionally may indicate SSL or not, depending on the underlying interface."""
61+
kwarg optionally may indicate SSL or not, depending on the underlying interface.
62+
"""
6263

6364

6465
class LegacyCircuitPythonSocketType(CommonCircuitPythonSocketType, Protocol):
@@ -76,7 +77,8 @@ class SupportsRecvWithFlags(Protocol):
7677
def recv(self, bufsize: int = ..., flags: int = ...) -> bytes:
7778
"""Receive data from the socket. The return value is a bytes object representing
7879
the data received. The maximum amount of data to be received at once is specified
79-
by bufsize. The meaning of the optional flags kwarg is implementation-specific."""
80+
by bufsize. The meaning of the optional flags kwarg is implementation-specific.
81+
"""
8082

8183

8284
class SupportsRecvInto(Protocol):

0 commit comments

Comments
 (0)