We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3d76d8 commit 2b71a3dCopy full SHA for 2b71a3d
flask_oauthlib/client.py
@@ -19,13 +19,11 @@
19
from werkzeug import parse_options_header, cached_property
20
from .utils import to_bytes
21
try:
22
- from urllib import urlencode
23
- from urlparse import parse_qsl, urljoin, urlparse, urlunparse
+ from urlparse import urljoin
24
import urllib2 as http
25
except ImportError:
26
from urllib import request as http
27
from urllib.parse import urljoin
28
- from urllib.parse import parse_qsl, urlencode, urlparse, urlunparse
29
log = logging.getLogger('flask_oauthlib')
30
31
0 commit comments