Skip to content

Commit 0ac686e

Browse files
committed
chore: remove void space from comments
1 parent 88fd6f3 commit 0ac686e

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

cloud-sql/mysql/sqlalchemy/connect_connector.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def connect_with_connector() -> sqlalchemy.engine.base.Engine:
4343

4444
# setting the refresh strategy to LAZY
4545
# to refresh the tokens when they are needed, rather than on a regular interval
46-
# this is recommended for serverless environments to
46+
# this is recommended for serverless environments to
4747
# avoid background refreshes from throttling CPU.
4848

4949
connector = Connector(ip_type=ip_type, refresh_strategy="LAZY")

cloud-sql/mysql/sqlalchemy/connect_connector_auto_iam_authn.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def connect_with_connector_auto_iam_authn() -> sqlalchemy.engine.base.Engine:
4141

4242
# setting the refresh strategy to LAZY
4343
# to refresh the tokens when they are needed, rather than on a regular interval
44-
# this is recommended for serverless environments to
44+
# this is recommended for serverless environments to
4545
# avoid background refreshes from throttling CPU.
4646

4747
# initialize Cloud SQL Python Connector object

cloud-sql/postgres/sqlalchemy/connect_connector.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def connect_with_connector() -> sqlalchemy.engine.base.Engine:
4343

4444
# setting the refresh strategy to LAZY
4545
# to refresh the tokens when they are needed, rather than on a regular interval
46-
# this is recommended for serverless environments to
46+
# this is recommended for serverless environments to
4747
# avoid background refreshes from throttling CPU.
4848

4949
# initialize Cloud SQL Python Connector object

cloud-sql/postgres/sqlalchemy/connect_connector_auto_iam_authn.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def connect_with_connector_auto_iam_authn() -> sqlalchemy.engine.base.Engine:
4141

4242
# setting the refresh strategy to LAZY
4343
# to refresh the tokens when they are needed, rather than on a regular interval
44-
# this is recommended for serverless environments to
44+
# this is recommended for serverless environments to
4545
# avoid background refreshes from throttling CPU.
4646
# initialize Cloud SQL Python Connector object
4747
connector = Connector(refresh_strategy="LAZY")

cloud-sql/sql-server/sqlalchemy/connect_connector.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def connect_with_connector() -> sqlalchemy.engine.base.Engine:
4343

4444
# setting the refresh strategy to LAZY
4545
# to refresh the tokens when they are needed, rather than on a regular interval
46-
# this is recommended for serverless environments to
46+
# this is recommended for serverless environments to
4747
# avoid background refreshes from throttling CPU.
4848

4949
connector = Connector(ip_type=ip_type, refresh_strategy="LAZY")

0 commit comments

Comments
 (0)