fix: Catch ImportErrors for Google SDKs (#25550)

This commit is contained in:
Pieter Ennes 2024-01-20 00:00:43 +01:00 committed by GitHub
parent 69b57016b3
commit effd73f2cc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ try:
from google.oauth2 import service_account
dependencies_installed = True
except ModuleNotFoundError:
except ImportError:
dependencies_installed = False
try: