Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update python (patch) #808

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
refactor(lint): apply automatic lint fixes
pre-commit-ci[bot] committed Mar 19, 2025
commit 11ce2c0f0c9fbe708b157f5c28b648d057578173
3 changes: 2 additions & 1 deletion auth/gcloud/aio/auth/token.py
Original file line number Diff line number Diff line change
@@ -337,7 +337,8 @@ async def _refresh_authorized_user(self, timeout: int) -> TokenResponse:
return TokenResponse(value=str(content['access_token']),
expires_in=int(content['expires_in']))

async def _refresh_source_authorized_user(self, timeout: int) -> TokenResponse:
async def _refresh_source_authorized_user(
self, timeout: int) -> TokenResponse:
source_credentials = self.service_data['source_credentials']
payload = urlencode({
'grant_type': 'refresh_token',