summaryrefslogtreecommitdiff
path: root/oauthlib/oauth2/rfc8628/clients/device.py
diff options
context:
space:
mode:
authorDariusz <github@smigiel.dev>2022-06-21 07:53:36 -0700
committerGitHub <noreply@github.com>2022-06-21 07:53:36 -0700
commitf52f641d763e4958d108e875e0cd6fca50d110f2 (patch)
tree62b0c653973035c88d4044105fde43a25397ef53 /oauthlib/oauth2/rfc8628/clients/device.py
parented0cb63945c4a5940b185823809693b7f97989ad (diff)
parentbdc486e2bc3a188027a4ebec3a3013e64023ce62 (diff)
downloadoauthlib-f52f641d763e4958d108e875e0cd6fca50d110f2.tar.gz
Merge branch 'oauthlib:master' into master
Diffstat (limited to 'oauthlib/oauth2/rfc8628/clients/device.py')
-rw-r--r--oauthlib/oauth2/rfc8628/clients/device.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/oauthlib/oauth2/rfc8628/clients/device.py b/oauthlib/oauth2/rfc8628/clients/device.py
index 4707cc5..b9ba215 100644
--- a/oauthlib/oauth2/rfc8628/clients/device.py
+++ b/oauthlib/oauth2/rfc8628/clients/device.py
@@ -5,12 +5,11 @@ oauthlib.oauth2.rfc8628
This module is an implementation of various logic needed
for consuming and providing OAuth 2.0 Device Authorization RFC8628.
"""
-
+from oauthlib.common import add_params_to_uri
from oauthlib.oauth2 import BackendApplicationClient, Client
from oauthlib.oauth2.rfc6749.errors import InsecureTransportError
from oauthlib.oauth2.rfc6749.parameters import prepare_token_request
from oauthlib.oauth2.rfc6749.utils import is_secure_transport, list_to_scope
-from oauthlib.common import add_params_to_uri
class DeviceClient(Client):