Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Source Google Search Console: fix spelling mistakes in connector exceptions #32921

Merged
merged 1 commit into from
Nov 29, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down
Loading