Skip to content

Commit 8c3ce21

Browse files
author
Uziel Silva
committed
fix(main): Fix linting
1 parent 42dab35 commit 8c3ce21

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

google/cloud/sql/connector/proxy.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
from pathlib import Path
2020
import socket
2121
import ssl
22-
from typing import Optional
2322

2423
from google.cloud.sql.connector.exceptions import LocalProxyStartupError
2524

@@ -28,8 +27,8 @@
2827

2928
def start_local_proxy(
3029
ssl_sock: ssl.SSLSocket,
31-
socket_path: Optional[str] = "/tmp/connector-socket",
32-
loop: Optional[asyncio.AbstractEventLoop] = None,
30+
socket_path: str,
31+
loop: asyncio.AbstractEventLoop
3332
) -> asyncio.Task:
3433
"""Helper function to start a UNIX based local proxy for
3534
transport messages through the SSL Socket.

0 commit comments

Comments
 (0)