1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

PEP8 fixes

This commit is contained in:
Jeremy Stretch
2017-06-28 16:25:36 -04:00
parent d5bb37b552
commit a23da9f867
2 changed files with 1 additions and 2 deletions

View File

@ -1318,7 +1318,6 @@ class InventoryItem(models.Model):
discovered = models.BooleanField(default=False, verbose_name='Discovered')
description = models.CharField(max_length=100, blank=True)
class Meta:
ordering = ['device__id', 'parent__id', 'name']
unique_together = ['device', 'parent', 'name']