This commit is contained in:
Reid 'arrdem' McKenzie 2023-05-28 17:37:47 -06:00
parent 984d976c8c
commit e082a4aa11
2 changed files with 6 additions and 5 deletions

View file

@ -1,19 +1,20 @@
#!/usr/bin/env python3 #!/usr/bin/env python3
import logging import logging
import os
from tentacles.globals import ctx
from .util import requires_auth
from .api import create_file from .api import create_file
from .util import requires_auth
from flask import ( from flask import (
Blueprint, Blueprint,
flash, flash,
redirect,
render_template, render_template,
request, request,
redirect,
) )
import os from tentacles.globals import ctx
log = logging.getLogger(__name__) log = logging.getLogger(__name__)
BLUEPRINT = Blueprint("files", __name__) BLUEPRINT = Blueprint("files", __name__)

View file

@ -8,8 +8,8 @@ from flask import (
Blueprint, Blueprint,
flash, flash,
redirect, redirect,
request,
render_template, render_template,
request,
) )
from tentacles.globals import ctx from tentacles.globals import ctx