diff --git a/projects/tentacles/src/python/tentacles/blueprints/file_ui.py b/projects/tentacles/src/python/tentacles/blueprints/file_ui.py
index 37352dd..f98c42e 100644
--- a/projects/tentacles/src/python/tentacles/blueprints/file_ui.py
+++ b/projects/tentacles/src/python/tentacles/blueprints/file_ui.py
@@ -1,19 +1,20 @@
 #!/usr/bin/env python3
 
 import logging
+import os
 
-from tentacles.globals import ctx
-from .util import requires_auth
 from .api import create_file
+from .util import requires_auth
 
 from flask import (
     Blueprint,
     flash,
+    redirect,
     render_template,
     request,
-    redirect,
 )
-import os
+from tentacles.globals import ctx
+
 
 log = logging.getLogger(__name__)
 BLUEPRINT = Blueprint("files", __name__)
diff --git a/projects/tentacles/src/python/tentacles/blueprints/job_ui.py b/projects/tentacles/src/python/tentacles/blueprints/job_ui.py
index 512515c..cf282ca 100644
--- a/projects/tentacles/src/python/tentacles/blueprints/job_ui.py
+++ b/projects/tentacles/src/python/tentacles/blueprints/job_ui.py
@@ -8,8 +8,8 @@ from flask import (
     Blueprint,
     flash,
     redirect,
-    request,
     render_template,
+    request,
 )
 from tentacles.globals import ctx