Skip to content

Commit 665d7ba

Browse files
Fix: removes scope to avoid unnecessary duplication (#1503)
* Fix: removes scope to avoid unnecessary duplication * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
1 parent 7b5f309 commit 665d7ba

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

google/cloud/bigquery/client.py

+1-4
Original file line numberDiff line numberDiff line change
@@ -225,10 +225,7 @@ class Client(ClientWithProject):
225225
to acquire default credentials.
226226
"""
227227

228-
SCOPE = ( # type: ignore
229-
"https://www.googleapis.com/auth/bigquery",
230-
"https://www.googleapis.com/auth/cloud-platform",
231-
)
228+
SCOPE = ("https://www.googleapis.com/auth/cloud-platform",) # type: ignore
232229
"""The scopes required for authenticating as a BigQuery consumer."""
233230

234231
def __init__(

0 commit comments

Comments
 (0)