From 9591fb9330c893147406068324e0dcf9506253af Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Tue, 13 Sep 2016 12:10:21 -0400 Subject: [PATCH] PEP8 fix --- netbox/ipam/forms.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/netbox/ipam/forms.py b/netbox/ipam/forms.py index 2fe6a34f7..5e08ca854 100644 --- a/netbox/ipam/forms.py +++ b/netbox/ipam/forms.py @@ -15,10 +15,10 @@ from .models import ( FORM_PREFIX_STATUS_CHOICES = (('', '---------'),) + PREFIX_STATUS_CHOICES FORM_VLAN_STATUS_CHOICES = (('', '---------'),) + VLAN_STATUS_CHOICES IP_FAMILY_CHOICES = [ - ('', 'All'), - (4, 'IPv4'), - (6, 'IPv6'), - ] + ('', 'All'), + (4, 'IPv4'), + (6, 'IPv6'), +] def bulkedit_vrf_choices():