Skip to content

Commit 47ee175

Browse files
committed
lint
1 parent 7929390 commit 47ee175

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

google/auth/_default.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,8 @@ def _get_explicit_environ_credentials(quota_project_id=None):
344344
with warnings.catch_warnings():
345345
warnings.simplefilter("ignore", DeprecationWarning)
346346
credentials, project_id = load_credentials_from_file(
347-
os.environ[environment_vars.CREDENTIALS], quota_project_id=quota_project_id
347+
os.environ[environment_vars.CREDENTIALS],
348+
quota_project_id=quota_project_id,
348349
)
349350
credentials._cred_file_path = f"{explicit_file} file via the GOOGLE_APPLICATION_CREDENTIALS environment variable"
350351

google/auth/_default_async.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,8 @@ def _get_explicit_environ_credentials(quota_project_id=None):
147147
with warnings.catch_warnings():
148148
warnings.simplefilter("ignore", DeprecationWarning)
149149
credentials, project_id = load_credentials_from_file(
150-
os.environ[environment_vars.CREDENTIALS], quota_project_id=quota_project_id
150+
os.environ[environment_vars.CREDENTIALS],
151+
quota_project_id=quota_project_id,
151152
)
152153

153154
return credentials, project_id

0 commit comments

Comments
 (0)