Browse Source

make tox happy

Peter Bieringer 1 year ago
parent
commit
7b6146405f
1 changed files with 3 additions and 2 deletions
  1. 3 2
      radicale/auth/oauth2.py

+ 3 - 2
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):