diff --git a/radicale/auth/oauth2.py b/radicale/auth/oauth2.py index 644bdb8a..c9ae4359 100644 --- a/radicale/auth/oauth2.py +++ b/radicale/auth/oauth2.py @@ -24,10 +24,11 @@ Authentication backend that checks credentials against an oauth2 server auth endpoint """ +import requests + from radicale import auth from radicale.log import logger -import requests -from requests.utils import quote + class Auth(auth.BaseAuth): def __init__(self, configuration):