aboutsummaryrefslogtreecommitdiff
path: root/newspipe/web/views/feed.py
diff options
context:
space:
mode:
Diffstat (limited to 'newspipe/web/views/feed.py')
-rw-r--r--newspipe/web/views/feed.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/newspipe/web/views/feed.py b/newspipe/web/views/feed.py
index 82d285b6..0a659b17 100644
--- a/newspipe/web/views/feed.py
+++ b/newspipe/web/views/feed.py
@@ -9,7 +9,7 @@ from flask import (
redirect,
render_template,
request,
- url_for
+ url_for,
)
from flask_babel import gettext
from flask_login import current_user, login_required
@@ -21,7 +21,7 @@ from newspipe.controllers import (
ArticleController,
CategoryController,
FeedController,
- UserController
+ UserController,
)
from newspipe.lib import misc_utils, utils
from newspipe.lib.feed_utils import construct_feed_from
bgstack15