pep8-ify comments

This commit is contained in:
hellerve 2021-04-12 11:48:28 +02:00
parent 3c13f81c83
commit 698e5d99ee

View File

@ -3826,7 +3826,7 @@ class CableCSVForm(CustomFieldModelCSVForm):
help_text='Side A parent type' help_text='Side A parent type'
) )
side_a_parent = DeferredCSVModelChoiceField( side_a_parent = DeferredCSVModelChoiceField(
queryset=Device.objects.none(), # this is a standin queryset=Device.objects.none(), # this is a standin
to_field_name='name', to_field_name='name',
help_text='Side A parent name' help_text='Side A parent name'
) )
@ -3836,7 +3836,7 @@ class CableCSVForm(CustomFieldModelCSVForm):
help_text='Side A type' help_text='Side A type'
) )
side_a = DeferredCSVModelChoiceField( side_a = DeferredCSVModelChoiceField(
queryset=Interface.objects.none(), # this is a standin queryset=Interface.objects.none(), # this is a standin
to_field_name='name', to_field_name='name',
help_text='Side A component name' help_text='Side A component name'
) )
@ -3848,7 +3848,7 @@ class CableCSVForm(CustomFieldModelCSVForm):
help_text='Side B parent type' help_text='Side B parent type'
) )
side_b_parent = DeferredCSVModelChoiceField( side_b_parent = DeferredCSVModelChoiceField(
queryset=Device.objects.none(), # this is a standin queryset=Device.objects.none(), # this is a standin
to_field_name='name', to_field_name='name',
help_text='Side B parent name' help_text='Side B parent name'
) )
@ -3858,7 +3858,7 @@ class CableCSVForm(CustomFieldModelCSVForm):
help_text='Side B type' help_text='Side B type'
) )
side_b = DeferredCSVModelChoiceField( side_b = DeferredCSVModelChoiceField(
queryset=Interface.objects.none(), # this is a standin queryset=Interface.objects.none(), # this is a standin
to_field_name='name', to_field_name='name',
help_text='Side B component name' help_text='Side B component name'
) )