From 403fdb31a18e9ca602b980e7b3e1c32d754e0682 Mon Sep 17 00:00:00 2001 From: Calum Lind Date: Thu, 4 Sep 2014 10:40:57 +0100 Subject: [WebUI] Fix isort error in auth --- deluge/ui/web/auth.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'deluge/ui/web/auth.py') 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)) -- cgit