summaryrefslogtreecommitdiffstats
path: root/deluge
diff options
context:
space:
mode:
authorCalum Lind <calumlind+deluge@gmail.com>2014-09-04 10:40:57 +0100
committerCalum Lind <calumlind+deluge@gmail.com>2014-09-04 10:40:57 +0100
commit403fdb31a18e9ca602b980e7b3e1c32d754e0682 (patch)
treeef82bc36f2f5e64a4e803ba8c163f651237ca1a8 /deluge
parent20b05ae595534514ae1a886088952b94816cf0b6 (diff)
downloaddeluge-403fdb31a18e9ca602b980e7b3e1c32d754e0682.tar.gz
deluge-403fdb31a18e9ca602b980e7b3e1c32d754e0682.tar.bz2
deluge-403fdb31a18e9ca602b980e7b3e1c32d754e0682.zip
[WebUI] Fix isort error in auth
Diffstat (limited to 'deluge')
-rw-r--r--deluge/ui/web/auth.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/deluge/ui/web/auth.py b/deluge/ui/web/auth.py
index 22dffd11a..acb7d2770 100644
--- a/deluge/ui/web/auth.py
+++ b/deluge/ui/web/auth.py
@@ -18,7 +18,6 @@ from twisted.internet.task import LoopingCall
from deluge import component
from deluge.common import utf8_encoded
-from deluge.ui.web.json_api import export, JSONComponent
log = logging.getLogger(__name__)
@@ -39,7 +38,7 @@ class AuthError(Exception):
pass
# Import after as json_api imports the above AuthError and AUTH_LEVEL_DEFAULT
-
+from deluge.ui.web.json_api import export, JSONComponent # isort:skip
def make_checksum(session_id):
return reduce(lambda x, y: x + y, map(ord, session_id))