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
|
#!/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__)
|
||||||
|
|
|
@ -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
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue