From f0ef03b2de855704d0c19a2fe74799276b8d31b9 Mon Sep 17 00:00:00 2001 From: attaxia Date: Wed, 29 Nov 2023 10:25:39 +0100 Subject: [PATCH] Fix spelling mistakes --- .../source_google_search_console/exceptions.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-google-search-console/source_google_search_console/exceptions.py b/airbyte-integrations/connectors/source-google-search-console/source_google_search_console/exceptions.py index 77dc53148762..03c2c635cf23 100644 --- a/airbyte-integrations/connectors/source-google-search-console/source_google_search_console/exceptions.py +++ b/airbyte-integrations/connectors/source-google-search-console/source_google_search_console/exceptions.py @@ -14,13 +14,13 @@ def __init__(self, invalid_site_url: Union[Set, List]) -> None: class UnauthorizedOauthError(Exception): def __init__(self): - message = "Unable to connect with privided OAuth credentials. The `access token` or `refresh token` is expired. Please re-authrenticate using valid account credenials." + message = "Unable to connect with provided OAuth credentials. The `access token` or `refresh token` is expired. Please re-authrenticate using valid account credenials." super().__init__(message) class UnauthorizedServiceAccountError(Exception): def __init__(self): - message = "Unable to connect with privided Service Account credentials. Make sure the `sevice account crdentials` povided is valid." + message = "Unable to connect with provided Service Account credentials. Make sure the `sevice account credentials` provided are valid." super().__init__(message)