From 698e5d99eeb07c6815c111b74044bf7fa8576248 Mon Sep 17 00:00:00 2001 From: hellerve Date: Mon, 12 Apr 2021 11:48:28 +0200 Subject: [PATCH] pep8-ify comments --- netbox/dcim/forms.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/netbox/dcim/forms.py b/netbox/dcim/forms.py index 39e9af30e..6737ec134 100644 --- a/netbox/dcim/forms.py +++ b/netbox/dcim/forms.py @@ -3826,7 +3826,7 @@ class CableCSVForm(CustomFieldModelCSVForm): help_text='Side A parent type' ) side_a_parent = DeferredCSVModelChoiceField( - queryset=Device.objects.none(), # this is a standin + queryset=Device.objects.none(), # this is a standin to_field_name='name', help_text='Side A parent name' ) @@ -3836,7 +3836,7 @@ class CableCSVForm(CustomFieldModelCSVForm): help_text='Side A type' ) side_a = DeferredCSVModelChoiceField( - queryset=Interface.objects.none(), # this is a standin + queryset=Interface.objects.none(), # this is a standin to_field_name='name', help_text='Side A component name' ) @@ -3848,7 +3848,7 @@ class CableCSVForm(CustomFieldModelCSVForm): help_text='Side B parent type' ) side_b_parent = DeferredCSVModelChoiceField( - queryset=Device.objects.none(), # this is a standin + queryset=Device.objects.none(), # this is a standin to_field_name='name', help_text='Side B parent name' ) @@ -3858,7 +3858,7 @@ class CableCSVForm(CustomFieldModelCSVForm): help_text='Side B type' ) side_b = DeferredCSVModelChoiceField( - queryset=Interface.objects.none(), # this is a standin + queryset=Interface.objects.none(), # this is a standin to_field_name='name', help_text='Side B component name' )