aboutsummaryrefslogtreecommitdiff
path: root/newspipe/web/views/api/v2/article.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2020-03-14 11:14:56 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2020-03-14 11:14:56 +0100
commit37760cba99a29b1eec44b1eef7c7df7deddaad56 (patch)
tree9c3e28de0341b0b369b5f79931403dadc3fd1dad /newspipe/web/views/api/v2/article.py
parentMinor optimizations of the layout for the home page. (diff)
downloadnewspipe-37760cba99a29b1eec44b1eef7c7df7deddaad56.tar.gz
newspipe-37760cba99a29b1eec44b1eef7c7df7deddaad56.tar.bz2
newspipe-37760cba99a29b1eec44b1eef7c7df7deddaad56.zip
Improved the mamagement of parameter transferd via URL for the search of articles.
Diffstat (limited to 'newspipe/web/views/api/v2/article.py')
-rw-r--r--newspipe/web/views/api/v2/article.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/newspipe/web/views/api/v2/article.py b/newspipe/web/views/api/v2/article.py
index 638f1bd0..92915006 100644
--- a/newspipe/web/views/api/v2/article.py
+++ b/newspipe/web/views/api/v2/article.py
@@ -10,7 +10,7 @@ from newspipe.web.views.api.v2.common import (
PyAggAbstractResource,
PyAggResourceExisting,
PyAggResourceMulti,
- PyAggResourceNew
+ PyAggResourceNew,
)
from newspipe.web.views.common import api_permission
bgstack15