1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Update choices.py

This commit is contained in:
Brian Ellwood
2021-07-26 15:03:43 -04:00
committed by GitHub
parent e300fad340
commit 1c38d63c50

View File

@ -342,7 +342,7 @@ class PowerPortTypeChoices(ChoiceSet):
# Proprietary
TYPE_SAF_D_GRID = 'saf-d-grid'
# Other
TYPE_OTHER = 'other'
TYPE_HARDWIRED = 'hardwired'
CHOICES = (
('IEC 60320', (
@ -450,7 +450,7 @@ class PowerPortTypeChoices(ChoiceSet):
(TYPE_SAF_D_GRID, 'Saf-D-Grid'),
)),
('Other', (
(TYPE_OTHER, 'Other'),
(TYPE_HARDWIRED, 'Hardwired'),
)),
)