Skip to content
This repository was archived by the owner on Sep 3, 2022. It is now read-only.

CREDENTIAL_SCOPES: Add /auth/drive for bigquery tables backed by sheets #456

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
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
1 change: 1 addition & 0 deletions datalab/context/_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
# that the user can define for themselves which scopes they want to use.
CREDENTIAL_SCOPES = [
'https://www.googleapis.com/auth/cloud-platform',
'https://www.googleapis.com/auth/drive',
]


Expand Down
1 change: 1 addition & 0 deletions google/datalab/utils/_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ def gcs_copy_file(source, dest):
# that the user can define for themselves which scopes they want to use.
CREDENTIAL_SCOPES = [
'https://www.googleapis.com/auth/cloud-platform',
'https://www.googleapis.com/auth/drive',
]


Expand Down