removes unneeded imports

This commit is contained in:
Mouse Reeve
2020-12-12 18:06:48 -08:00
parent 9b7f0366e7
commit 1e01e76ac2
5 changed files with 5 additions and 4 deletions

View File

@ -16,7 +16,8 @@ class Author(ActivitypubMixin, BookWyrmModel):
max_length=255, blank=True, null=True, deduplication_field=True)
sync = models.BooleanField(default=True)
last_sync_date = models.DateTimeField(default=timezone.now)
wikipedia_link = fields.CharField(max_length=255, blank=True, null=True, deduplication_field=True)
wikipedia_link = fields.CharField(
max_length=255, blank=True, null=True, deduplication_field=True)
# idk probably other keys would be useful here?
born = fields.DateTimeField(blank=True, null=True)
died = fields.DateTimeField(blank=True, null=True)