From e082a4aa11cc5e557f549a013959c612deb6806f Mon Sep 17 00:00:00 2001 From: Reid 'arrdem' McKenzie Date: Sun, 28 May 2023 17:37:47 -0600 Subject: [PATCH] Fmt. --- .../tentacles/src/python/tentacles/blueprints/file_ui.py | 9 +++++---- .../tentacles/src/python/tentacles/blueprints/job_ui.py | 2 +- 2 files changed, 6 insertions(+), 5 deletions(-) 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