From 97b56e9bc28038a7d382ab56c9d2948dc10d4574 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Sat, 2 Jan 2021 09:45:51 -0800 Subject: [PATCH] Removes references to max entries in views --- bookwyrm/templates/import.html | 2 -- bookwyrm/views.py | 2 -- 2 files changed, 4 deletions(-) diff --git a/bookwyrm/templates/import.html b/bookwyrm/templates/import.html index 8e3f5eb49..bfa8d3ec8 100644 --- a/bookwyrm/templates/import.html +++ b/bookwyrm/templates/import.html @@ -21,8 +21,6 @@ -

- Imports are limited in size, and only the first {{ limit }} items will be imported.

diff --git a/bookwyrm/views.py b/bookwyrm/views.py index 9a0157b11..10137684b 100644 --- a/bookwyrm/views.py +++ b/bookwyrm/views.py @@ -14,7 +14,6 @@ from django.views.decorators.http import require_GET from bookwyrm import outgoing from bookwyrm import forms, models -from bookwyrm import goodreads_import from bookwyrm.activitypub import ActivitypubResponse from bookwyrm.connectors import connector_manager from bookwyrm.settings import PAGE_LENGTH @@ -252,7 +251,6 @@ def import_page(request): 'import_form': forms.ImportForm(), 'jobs': models.ImportJob. objects.filter(user=request.user).order_by('-created_date'), - 'limit': goodreads_import.MAX_ENTRIES, })