mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-27 10:58:37 -06:00
pep8-ify comments
This commit is contained in:
parent
3c13f81c83
commit
698e5d99ee
@ -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'
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user