Skip to content

Commit 6ba866a

Browse files
chore: fix typo in deprecation warning and docstring (#255)
1 parent 17994cc commit 6ba866a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

google/cloud/sql/connector/connector.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ def connect(
127127
ip_type = kwargs.pop("ip_types")
128128
logger.warning(
129129
"Deprecation Warning: Parameter `ip_types` is deprecated and may be removed"
130-
"in a future release. Please use `ip_type` instead."
130+
" in a future release. Please use `ip_type` instead."
131131
)
132132
else:
133133
ip_type = kwargs.pop("ip_type", self._ip_type)

google/cloud/sql/connector/instance_connection_manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -648,7 +648,7 @@ def _connect_with_pg8000(
648648
def _connect_with_pytds(
649649
self, ip_address: str, ctx: ssl.SSLContext, **kwargs: Any
650650
) -> "pytds.Connection":
651-
"""Helper function to create a pg8000 DB-API connection object.
651+
"""Helper function to create a pytds DB-API connection object.
652652
653653
:type ip_address: str
654654
:param ip_address: A string containing an IP address for the Cloud SQL

0 commit comments

Comments
 (0)