Skip to content

Commit 62bfc56

Browse files
chore: turn off fmt for imports
1 parent e4582c2 commit 62bfc56

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

tests/unit/test_connection_name.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,14 @@
1414

1515
import pytest # noqa F401 Needed to run the tests
1616

17+
# fmt: off
1718
from google.cloud.sql.connector.connection_name import _parse_connection_name
18-
from google.cloud.sql.connector.connection_name import (
19-
_parse_connection_name_with_domain_name,
20-
)
19+
from google.cloud.sql.connector.connection_name import \
20+
_parse_connection_name_with_domain_name
2121
from google.cloud.sql.connector.connection_name import ConnectionName
2222

23+
# fmt: on
24+
2325

2426
def test_ConnectionName() -> None:
2527
conn_name = ConnectionName("project", "region", "instance")

0 commit comments

Comments
 (0)