From b5b9a4fb6433ad4b90a99a5aa43511b9bb63095d Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Tue, 27 Aug 2024 19:21:55 -0700 Subject: [PATCH] Fixes placement of ignores that black muddled (rude) --- bookwyrm/views/suggestion_list.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bookwyrm/views/suggestion_list.py b/bookwyrm/views/suggestion_list.py index f8b6cb755..85c3bd960 100644 --- a/bookwyrm/views/suggestion_list.py +++ b/bookwyrm/views/suggestion_list.py @@ -5,7 +5,7 @@ from django.contrib.auth.decorators import login_required from django.core.paginator import Paginator from django.db import transaction from django.db.models import Count, Q -from django.http import HttpRequest, HttpResponse +from django.http import HttpRequest from django.shortcuts import get_object_or_404 from django.template.response import TemplateResponse from django.urls import reverse @@ -84,8 +84,8 @@ class SuggestionList(View): @method_decorator(login_required, name="dispatch") def post( - self, request: HttpRequest, book_id: int - ) -> Any: # pylint: disable=unused-argument + self, request: HttpRequest, book_id: int # pylint: disable=unused-argument + ) -> Any: """create a suggestion_list""" form = forms.SuggestionListForm(request.POST)