Skip to content

Commit 15a16e5

Browse files
committed
chore: update docstrings comment
1 parent 4a4d43d commit 15a16e5

File tree

7 files changed

+16
-8
lines changed

7 files changed

+16
-8
lines changed

tests/system/test_asyncpg_connection.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,8 @@ async def create_sqlalchemy_engine(
6565
db (str):
6666
The name of the database, e.g., mydb
6767
ip_type (str):
68-
The IP type of the Cloud SQL instance. Can be one of "public", "private", or "psc".
68+
The IP type of the Cloud SQL instance to connect to. Can be one
69+
of "public", "private", or "psc".
6970
refresh_strategy (Optional[str]):
7071
Refresh strategy for the Cloud SQL Connector. Can be one of "lazy"
7172
or "background". For serverless environments use "lazy" to avoid
@@ -133,7 +134,8 @@ async def create_asyncpg_pool(
133134
db (str):
134135
The name of the database, e.g., mydb
135136
ip_type (str):
136-
The IP type of the Cloud SQL instance. Can be one of "public", "private", or "psc".
137+
The IP type of the Cloud SQL instance to connect to. Can be one
138+
of "public", "private", or "psc".
137139
refresh_strategy (Optional[str]):
138140
Refresh strategy for the Cloud SQL Connector. Can be one of "lazy"
139141
or "background". For serverless environments use "lazy" to avoid

tests/system/test_asyncpg_iam_auth.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,8 @@ async def create_sqlalchemy_engine(
5757
db (str):
5858
The name of the database, e.g., mydb
5959
ip_type (str):
60-
The IP type of the Cloud SQL instance. Can be one of "public", "private", or "psc".
60+
The IP type of the Cloud SQL instance to connect to. Can be one
61+
of "public", "private", or "psc".
6162
refresh_strategy (Optional[str]):
6263
Refresh strategy for the Cloud SQL Connector. Can be one of "lazy"
6364
or "background". For serverless environments use "lazy" to avoid

tests/system/test_pg8000_connection.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,8 @@ def create_sqlalchemy_engine(
6666
db (str):
6767
The name of the database, e.g., mydb
6868
ip_type (str):
69-
The IP type of the Cloud SQL instance. Can be one of "public", "private", or "psc".
69+
The IP type of the Cloud SQL instance to connect to. Can be one
70+
of "public", "private", or "psc".
7071
refresh_strategy (Optional[str]):
7172
Refresh strategy for the Cloud SQL Connector. Can be one of "lazy"
7273
or "background". For serverless environments use "lazy" to avoid

tests/system/test_pg8000_iam_auth.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,8 @@ def create_sqlalchemy_engine(
5757
db (str):
5858
The name of the database, e.g., mydb
5959
ip_type (str):
60-
The IP type of the Cloud SQL instance. Can be one of "public", "private", or "psc".
60+
The IP type of the Cloud SQL instance to connect to. Can be one
61+
of "public", "private", or "psc".
6162
refresh_strategy (Optional[str]):
6263
Refresh strategy for the Cloud SQL Connector. Can be one of "lazy"
6364
or "background". For serverless environments use "lazy" to avoid

tests/system/test_pymysql_connection.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,8 @@ def create_sqlalchemy_engine(
6161
db (str):
6262
The name of the database, e.g., mydb
6363
ip_type (str):
64-
The IP type of the Cloud SQL instance. Can be one of "public", "private", or "psc".
64+
The IP type of the Cloud SQL instance to connect to. Can be one
65+
of "public", "private", or "psc".
6566
refresh_strategy (Optional[str]):
6667
Refresh strategy for the Cloud SQL Connector. Can be one of "lazy"
6768
or "background". For serverless environments use "lazy" to avoid

tests/system/test_pymysql_iam_auth.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,8 @@ def create_sqlalchemy_engine(
5757
db (str):
5858
The name of the database, e.g., mydb
5959
ip_type (str):
60-
The IP type of the Cloud SQL instance. Can be one of "public", "private", or "psc".
60+
The IP type of the Cloud SQL instance to connect to. Can be one
61+
of "public", "private", or "psc".
6162
refresh_strategy (Optional[str]):
6263
Refresh strategy for the Cloud SQL Connector. Can be one of "lazy"
6364
or "background". For serverless environments use "lazy" to avoid

tests/system/test_pytds_connection.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,8 @@ def create_sqlalchemy_engine(
5959
db (str):
6060
The name of the database, e.g., mydb
6161
ip_type (str):
62-
The IP type of the Cloud SQL instance. Can be one of "public", "private", or "psc".
62+
The IP type of the Cloud SQL instance to connect to. Can be one
63+
of "public", "private", or "psc".
6364
refresh_strategy (Optional[str]):
6465
Refresh strategy for the Cloud SQL Connector. Can be one of "lazy"
6566
or "background". For serverless environments use "lazy" to avoid

0 commit comments

Comments
 (0)