remove unused GOOGLE_SCOPE_ALIASES_REVERSE

This commit is contained in:
Jeremiah Lowin 2026-03-13 18:35:38 -04:00
commit 3af099c1eb
No known key found for this signature in database

View file

@ -42,10 +42,6 @@ GOOGLE_SCOPE_ALIASES: dict[str, str] = {
"profile": "https://www.googleapis.com/auth/userinfo.profile",
}
GOOGLE_SCOPE_ALIASES_REVERSE: dict[str, str] = {
v: k for k, v in GOOGLE_SCOPE_ALIASES.items()
}
def _normalize_google_scope(scope: str) -> str:
"""Normalize a Google scope shorthand to its canonical full URI.