Skip to content

Commit bc8c68e

Browse files
committed
Run pre-commit
1 parent e0f1154 commit bc8c68e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

adafruit_espatcontrol/adafruit_espatcontrol_socket.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ def set_interface(iface: ESP_ATcontrol) -> None:
2323
SOCK_STREAM = const(1)
2424
AF_INET = const(2)
2525

26+
2627
# pylint: disable=too-many-arguments, unused-argument
2728
def getaddrinfo(
2829
host: str,
@@ -64,7 +65,8 @@ def __init__(
6465

6566
def connect(self, address: Tuple[str, int], conntype: Optional[str] = None) -> None:
6667
"""Connect the socket to the 'address' (which should be dotted quad IP). 'conntype'
67-
is an extra that may indicate SSL or not, depending on the underlying interface"""
68+
is an extra that may indicate SSL or not, depending on the underlying interface
69+
"""
6870
host, port = address
6971

7072
if not _the_interface.socket_connect(

0 commit comments

Comments
 (0)