1
0
Fork 0

Style fixes suggested by pylint.

This commit is contained in:
Adam Kelly 2020-04-22 14:53:22 +01:00
parent 894f76f843
commit fba78d7a0e
26 changed files with 37 additions and 73 deletions

View file

@ -1,8 +1,9 @@
''' database schema for books and shelves '''
from uuid import uuid4
from django.utils import timezone
from django.db import models
from model_utils.managers import InheritanceManager
from uuid import uuid4
from fedireads.settings import DOMAIN
from fedireads.utils.fields import JSONField, ArrayField
@ -155,4 +156,3 @@ class Author(FedireadsModel):
models.CharField(max_length=255), blank=True, default=list
)
bio = models.TextField(null=True, blank=True)