aboutsummaryrefslogtreecommitdiff
path: root/newspipe/web/views/article.py
diff options
context:
space:
mode:
Diffstat (limited to 'newspipe/web/views/article.py')
-rw-r--r--newspipe/web/views/article.py8
1 files changed, 2 insertions, 6 deletions
diff --git a/newspipe/web/views/article.py b/newspipe/web/views/article.py
index 472ff589..8cea11e4 100644
--- a/newspipe/web/views/article.py
+++ b/newspipe/web/views/article.py
@@ -8,17 +8,13 @@ from flask import (
redirect,
render_template,
request,
- url_for
+ url_for,
)
from flask_babel import gettext
from flask_login import current_user, login_required
from newspipe.bootstrap import db
-from newspipe.controllers import (
- ArticleController,
- CategoryController,
- UserController
-)
+from newspipe.controllers import ArticleController, CategoryController, UserController
from newspipe.lib.data import export_json
from newspipe.lib.utils import clear_string, redirect_url
from newspipe.web.lib.view_utils import etag_match
bgstack15