aboutsummaryrefslogtreecommitdiff
path: root/newspipe/web/views/category.py
diff options
context:
space:
mode:
Diffstat (limited to 'newspipe/web/views/category.py')
-rw-r--r--newspipe/web/views/category.py13
1 files changed, 10 insertions, 3 deletions
diff --git a/newspipe/web/views/category.py b/newspipe/web/views/category.py
index 392b8df6..962e5478 100644
--- a/newspipe/web/views/category.py
+++ b/newspipe/web/views/category.py
@@ -1,8 +1,15 @@
-from flask import Blueprint, flash, redirect, render_template, url_for
+from flask import Blueprint
+from flask import flash
+from flask import redirect
+from flask import render_template
+from flask import url_for
from flask_babel import gettext
-from flask_login import current_user, login_required
+from flask_login import current_user
+from flask_login import login_required
-from newspipe.controllers import ArticleController, CategoryController, FeedController
+from newspipe.controllers import ArticleController
+from newspipe.controllers import CategoryController
+from newspipe.controllers import FeedController
from newspipe.lib.utils import redirect_url
from newspipe.web.forms import CategoryForm
from newspipe.web.lib.view_utils import etag_match
bgstack15