Apply suggestions from python lint

This commit is contained in:
Joachim
2021-12-04 17:33:28 +01:00
parent 0801c66878
commit 8a84bd3490
2 changed files with 2 additions and 3 deletions

View File

@ -112,7 +112,7 @@ class List(OrderedCollectionMixin, BookWyrmModel):
"""on save, update embed_key and avoid clash with existing code"""
if not self.embed_key:
self.embed_key = uuid.uuid4()
return super(List, self).save(*args, **kwargs)
return super().save(*args, **kwargs)
class ListItem(CollectionItemMixin, BookWyrmModel):