aboutsummaryrefslogtreecommitdiff
path: root/newspipe/web/views/api/v2/feed.py
diff options
context:
space:
mode:
Diffstat (limited to 'newspipe/web/views/api/v2/feed.py')
-rw-r--r--newspipe/web/views/api/v2/feed.py8
1 files changed, 2 insertions, 6 deletions
diff --git a/newspipe/web/views/api/v2/feed.py b/newspipe/web/views/api/v2/feed.py
index f9e7f8c2..01791a8d 100644
--- a/newspipe/web/views/api/v2/feed.py
+++ b/newspipe/web/views/api/v2/feed.py
@@ -2,16 +2,12 @@ from flask import current_app
from flask_restful import Api
from newspipe.bootstrap import application
-from newspipe.controllers.feed import (
- DEFAULT_LIMIT,
- DEFAULT_MAX_ERROR,
- FeedController
-)
+from newspipe.controllers.feed import DEFAULT_LIMIT, DEFAULT_MAX_ERROR, FeedController
from newspipe.web.views.api.v2.common import (
PyAggAbstractResource,
PyAggResourceExisting,
PyAggResourceMulti,
- PyAggResourceNew
+ PyAggResourceNew,
)
from newspipe.web.views.common import api_permission
bgstack15