We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4582c2 commit 62bfc56Copy full SHA for 62bfc56
tests/unit/test_connection_name.py
@@ -14,12 +14,14 @@
14
15
import pytest # noqa F401 Needed to run the tests
16
17
+# fmt: off
18
from google.cloud.sql.connector.connection_name import _parse_connection_name
-from google.cloud.sql.connector.connection_name import (
19
- _parse_connection_name_with_domain_name,
20
-)
+from google.cloud.sql.connector.connection_name import \
+ _parse_connection_name_with_domain_name
21
from google.cloud.sql.connector.connection_name import ConnectionName
22
23
+# fmt: on
24
+
25
26
def test_ConnectionName() -> None:
27
conn_name = ConnectionName("project", "region", "instance")
0 commit comments