Remove unintended double negation in docstring (#6541)

Small typo fix.

`ImportError: If importing vertexai SDK didn't not succeed.` ->
`ImportError: If importing vertexai SDK did not succeed.`.
This commit is contained in:
Jeroen Van Goey
2023-06-21 19:01:28 +02:00
committed by GitHub
parent a2a0715bd4
commit 57b5f42847

View File

@@ -32,7 +32,7 @@ def init_vertexai(
will be ascertained from the environment. will be ascertained from the environment.
Raises: Raises:
ImportError: If importing vertexai SDK didn't not succeed. ImportError: If importing vertexai SDK did not succeed.
""" """
try: try:
import vertexai import vertexai