PEP fixes

This commit is contained in:
Oliver Walters 2019-05-03 08:04:30 +10:00
parent 019d5aa4ba
commit 9c4a5d10fa

View File

@ -123,7 +123,6 @@ class Build(models.Model):
related_name='builds_completed' related_name='builds_completed'
) )
URL = models.URLField(blank=True, help_text='Link to external URL') URL = models.URLField(blank=True, help_text='Link to external URL')
notes = models.TextField(blank=True) notes = models.TextField(blank=True)
@ -141,7 +140,6 @@ class Build(models.Model):
for item in self.allocated_stock.all(): for item in self.allocated_stock.all():
item.delete() item.delete()
# Date of 'completion' is the date the build was cancelled # Date of 'completion' is the date the build was cancelled
self.completion_date = datetime.now().date() self.completion_date = datetime.now().date()
self.completed_by = user self.completed_by = user