summaryrefslogtreecommitdiff
path: root/oauthlib/common.py
diff options
context:
space:
mode:
Diffstat (limited to 'oauthlib/common.py')
-rw-r--r--oauthlib/common.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/oauthlib/common.py b/oauthlib/common.py
index e7131df..e8ac1ae 100644
--- a/oauthlib/common.py
+++ b/oauthlib/common.py
@@ -12,10 +12,11 @@ import logging
import re
import time
import urllib.parse as urlparse
+from urllib.parse import (
+ quote as _quote, unquote as _unquote, urlencode as _urlencode,
+)
+
from . import get_debug
-from urllib.parse import quote as _quote
-from urllib.parse import unquote as _unquote
-from urllib.parse import urlencode as _urlencode
try:
from secrets import randbits