handle_http_errors decorator to simplify tool error handling

This commit is contained in:
Taylor Wilsdon
2025-06-18 16:29:35 -04:00
parent b6ca27c581
commit 97edbc4ff8
9 changed files with 991 additions and 1222 deletions

View File

@@ -243,7 +243,7 @@ def require_google_service(
cached_result = _get_cached_service(cache_key)
if cached_result:
service, actual_user_email = cached_result
if service is None:
try:
tool_name = func.__name__