From aab1fab445fba7b2e7f3eca523dd0e09666c6ef7 Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Wed, 7 Jun 2017 15:56:59 -0400 Subject: [PATCH] PEP8 fix --- netbox/dcim/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netbox/dcim/forms.py b/netbox/dcim/forms.py index 996c231c8..6aef5808c 100644 --- a/netbox/dcim/forms.py +++ b/netbox/dcim/forms.py @@ -255,7 +255,7 @@ class RackCSVForm(forms.ModelForm): help_text='Rack type' ) width = forms.ChoiceField( - choices = ( + choices=( (RACK_WIDTH_19IN, '19'), (RACK_WIDTH_23IN, '23'), ),