File tree Expand file tree Collapse file tree 9 files changed +13
-20
lines changed
packages/google-auth-oauthlib Expand file tree Collapse file tree 9 files changed +13
-20
lines changed Original file line number Diff line number Diff line change @@ -336,7 +336,6 @@ libraries:
336336 issue_tracker_override : https://github.com/googleapis/google-cloud-python/issues
337337 - name : google-auth-oauthlib
338338 version : 1.3.1
339- skip_generate : true
340339 python :
341340 library_type : AUTH
342341 name_pretty_override : Google Auth OAuthlib
Original file line number Diff line number Diff line change 11{
2- "name" : " google-auth-oauthlib" ,
3- "name_pretty" : " Google Auth OAuthlib" ,
42 "client_documentation" : " https://googleapis.dev/python/google-auth-oauthlib/latest" ,
3+ "distribution_name" : " google-auth-oauthlib" ,
54 "issue_tracker" : " https://github.com/googleapis/google-cloud-python/issues" ,
6- "release_level" : " stable" ,
75 "language" : " python" ,
86 "library_type" : " AUTH" ,
9- "repo " : " googleapis/ google-cloud-python " ,
10- "distribution_name " : " google-auth-oauthlib " ,
11- "default_version " : " " ,
12- "codeowner_team " : " @ googleapis/googleapis-auth "
13- }
7+ "name " : " google-auth-oauthlib " ,
8+ "name_pretty " : " Google Auth OAuthlib " ,
9+ "release_level " : " stable " ,
10+ "repo " : " googleapis/google-cloud-python "
11+ }
Original file line number Diff line number Diff line change 2424# All configuration values have a default; values that are commented out
2525# serve to show the default.
2626
27- import sys
2827import os
2928import shlex
29+ import sys
3030
3131# If extensions (or modules to document with autodoc) are in another directory,
3232# add these directories to sys.path here. If the directory is relative to the
Original file line number Diff line number Diff line change 5757 from secrets import SystemRandom
5858except ImportError : # pragma: NO COVER
5959 from random import SystemRandom
60+
6061from string import ascii_letters , digits
6162import webbrowser
6263import wsgiref .simple_server
6768
6869import google_auth_oauthlib .helpers
6970
70-
7171_LOGGER = logging .getLogger (__name__ )
7272
7373
Original file line number Diff line number Diff line change 2626
2727import google_auth_oauthlib .flow
2828
29-
3029LOCALHOST = "localhost"
3130DEFAULT_PORTS_TO_TRY = 100
3231
Original file line number Diff line number Diff line change 3838
3939import google_auth_oauthlib .flow
4040
41-
4241APP_NAME = "google-oauthlib-tool"
4342DEFAULT_CREDENTIALS_FILENAME = "credentials.json"
4443
Original file line number Diff line number Diff line change 1414
1515import io
1616
17- from setuptools import find_namespace_packages
18- from setuptools import setup
19-
17+ from setuptools import find_namespace_packages , setup
2018
2119TOOL_DEPENDENCIES = "click>=6.0.0"
2220
Original file line number Diff line number Diff line change 2121import re
2222import socket
2323from unittest import mock
24+ import urllib
25+ import webbrowser
2426
2527import pytest
2628import requests
27- import urllib
28- import webbrowser
2929
3030from google_auth_oauthlib import flow
3131
Original file line number Diff line number Diff line change 1717import os
1818from unittest import mock
1919
20- import pytest
21-
2220from google .auth import external_account_authorized_user
2321import google .oauth2 .credentials
22+ import pytest
23+
2424from google_auth_oauthlib import helpers
2525
2626DATA_DIR = os .path .join (os .path .dirname (__file__ ), "data" )
You can’t perform that action at this time.
0 commit comments