aboutsummaryrefslogtreecommitdiff
path: root/newspipe/web/views/bookmark.py
diff options
context:
space:
mode:
Diffstat (limited to 'newspipe/web/views/bookmark.py')
-rw-r--r--newspipe/web/views/bookmark.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/newspipe/web/views/bookmark.py b/newspipe/web/views/bookmark.py
index ccb2cbe0..cb4b3a02 100644
--- a/newspipe/web/views/bookmark.py
+++ b/newspipe/web/views/bookmark.py
@@ -93,7 +93,9 @@ def list_(per_page, status="all"):
filters["shared"] = True
bookmarks = (
- BookmarkController(user_id).read_ordered(**filters).limit(1000)
+ BookmarkController(user_id)
+ .read_ordered(**filters)
+ .limit(1000)
# BookmarkController(user_id).read(**filters).limit(1000)
)
bgstack15