Fmt.
This commit is contained in:
parent
984d976c8c
commit
e082a4aa11
2 changed files with 6 additions and 5 deletions
|
@ -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__)
|
||||
|
|
|
@ -8,8 +8,8 @@ from flask import (
|
|||
Blueprint,
|
||||
flash,
|
||||
redirect,
|
||||
request,
|
||||
render_template,
|
||||
request,
|
||||
)
|
||||
from tentacles.globals import ctx
|
||||
|
||||
|
|
Loading…
Reference in a new issue