From 19af20e700bd1dfcd8cf77e0115663aa22e286e7 Mon Sep 17 00:00:00 2001 From: Jordan Ramos Date: Sat, 14 Feb 2026 11:42:37 -0700 Subject: [PATCH] Fix syntax error in OAuth callback handler reference --- google_tools/oauth_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/google_tools/oauth_manager.py b/google_tools/oauth_manager.py index ab90650..b7c53ac 100644 --- a/google_tools/oauth_manager.py +++ b/google_tools/oauth_manager.py @@ -36,7 +36,7 @@ class OAuthCallbackHandler(BaseHTTPRequestHandler): params = parse_qs(query) if "code" in params: - OAuth CallbackHandler.authorization_code = params["code"][0] + OAuthCallbackHandler.authorization_code = params["code"][0] self.send_response(200) self.send_header("Content-type", "text/html") self.end_headers()