From 3af099c1ebd322a58b0517cfd2d69193987e82e8 Mon Sep 17 00:00:00 2001 From: Jeremiah Lowin <153965+jlowin@users.noreply.github.com> Date: Fri, 13 Mar 2026 18:35:38 -0400 Subject: [PATCH] remove unused GOOGLE_SCOPE_ALIASES_REVERSE --- src/fastmcp/server/auth/providers/google.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/fastmcp/server/auth/providers/google.py b/src/fastmcp/server/auth/providers/google.py index 84fce455b..4673252b8 100644 --- a/src/fastmcp/server/auth/providers/google.py +++ b/src/fastmcp/server/auth/providers/google.py @@ -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.