mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-11-22 09:31:08 +00:00
Fixes placement of ignores that black muddled (rude)
This commit is contained in:
parent
0b171b0ba9
commit
b5b9a4fb64
1 changed files with 3 additions and 3 deletions
|
@ -5,7 +5,7 @@ from django.contrib.auth.decorators import login_required
|
||||||
from django.core.paginator import Paginator
|
from django.core.paginator import Paginator
|
||||||
from django.db import transaction
|
from django.db import transaction
|
||||||
from django.db.models import Count, Q
|
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.shortcuts import get_object_or_404
|
||||||
from django.template.response import TemplateResponse
|
from django.template.response import TemplateResponse
|
||||||
from django.urls import reverse
|
from django.urls import reverse
|
||||||
|
@ -84,8 +84,8 @@ class SuggestionList(View):
|
||||||
|
|
||||||
@method_decorator(login_required, name="dispatch")
|
@method_decorator(login_required, name="dispatch")
|
||||||
def post(
|
def post(
|
||||||
self, request: HttpRequest, book_id: int
|
self, request: HttpRequest, book_id: int # pylint: disable=unused-argument
|
||||||
) -> Any: # pylint: disable=unused-argument
|
) -> Any:
|
||||||
"""create a suggestion_list"""
|
"""create a suggestion_list"""
|
||||||
form = forms.SuggestionListForm(request.POST)
|
form = forms.SuggestionListForm(request.POST)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue