Skip to content

Commit

Permalink
Remove vestigial comments about trusted testers (GoogleCloudPlatform#538
Browse files Browse the repository at this point in the history
)
  • Loading branch information
jerjou authored and Jon Wayne Parrott committed Sep 20, 2016
1 parent cd76a54 commit 592c5cd
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions vision/api/label/label.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,6 @@

from googleapiclient import discovery
from oauth2client.client import GoogleCredentials

# The url template to retrieve the discovery document for trusted testers.
DISCOVERY_URL = 'https://{api}.googleapis.com/$discovery/rest?version={apiVersion}' # noqa
# [END import_libraries]


Expand All @@ -43,8 +40,7 @@ def main(photo_file):

# [START authenticate]
credentials = GoogleCredentials.get_application_default()
service = discovery.build('vision', 'v1', credentials=credentials,
discoveryServiceUrl=DISCOVERY_URL)
service = discovery.build('vision', 'v1', credentials=credentials)
# [END authenticate]

# [START construct_request]
Expand Down

0 comments on commit 592c5cd

Please sign in to comment.