From 9f75d5bd237faf70f7906c356deea91294b1b0d9 Mon Sep 17 00:00:00 2001 From: Nick Peelman Date: Tue, 5 Jul 2016 10:48:36 -0400 Subject: [PATCH] Fix PEP8 compliance... --- netbox/dcim/fields.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netbox/dcim/fields.py b/netbox/dcim/fields.py index 1d756c910..df119ec17 100644 --- a/netbox/dcim/fields.py +++ b/netbox/dcim/fields.py @@ -5,10 +5,10 @@ from django.db import models from .formfields import MACAddressFormField + class mac_unix_expanded_uppercase(mac_unix_expanded): word_fmt = '%.2X' - class MACAddressField(models.Field): description = "PostgreSQL MAC Address field"