mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-11-25 11:01:12 +00:00
Fix pylint error and code format
This commit is contained in:
parent
93cab480d6
commit
ce18d343e8
1 changed files with 14 additions and 6 deletions
|
@ -17,7 +17,7 @@ from bookwyrm import models
|
|||
from bookwyrm.models.bookwyrm_export_job import BookwyrmExportJob
|
||||
from bookwyrm.settings import PAGE_LENGTH
|
||||
|
||||
# pylint: disable=no-self-use
|
||||
# pylint: disable=no-self-use,too-many-locals
|
||||
@method_decorator(login_required, name="dispatch")
|
||||
class Export(View):
|
||||
"""Let users export data"""
|
||||
|
@ -77,9 +77,17 @@ class Export(View):
|
|||
.first()
|
||||
)
|
||||
if readthrough:
|
||||
book.start_date = readthrough.start_date.date() if readthrough.start_date else None
|
||||
book.finish_date = readthrough.finish_date.date() if readthrough.finish_date else None
|
||||
book.stopped_date = readthrough.stopped_date.date() if readthrough.stopped_date else None
|
||||
book.start_date = (
|
||||
readthrough.start_date.date() if readthrough.start_date else None
|
||||
)
|
||||
book.finish_date = (
|
||||
readthrough.finish_date.date() if readthrough.finish_date else None
|
||||
)
|
||||
book.stopped_date = (
|
||||
readthrough.stopped_date.date()
|
||||
if readthrough.stopped_date
|
||||
else None
|
||||
)
|
||||
|
||||
review = (
|
||||
models.Review.objects.filter(
|
||||
|
@ -103,7 +111,7 @@ class Export(View):
|
|||
)
|
||||
|
||||
|
||||
# pylint: disable=no-self-use,too-many-locals
|
||||
# pylint: disable=no-self-use
|
||||
@method_decorator(login_required, name="dispatch")
|
||||
class ExportUser(View):
|
||||
"""Let users export user data to import into another Bookwyrm instance"""
|
||||
|
|
Loading…
Reference in a new issue