Merge pull request #5342 from JonathonReinhart/5337-add-splice-rearport-type

Closes #5337: Add "splice" port type
This commit is contained in:
Jeremy Stretch 2020-11-16 09:34:12 -05:00 committed by GitHub
commit 42c29d0f45
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -830,6 +830,7 @@ class PortTypeChoices(ChoiceSet):
TYPE_MPO = 'mpo' TYPE_MPO = 'mpo'
TYPE_LSH = 'lsh' TYPE_LSH = 'lsh'
TYPE_LSH_APC = 'lsh-apc' TYPE_LSH_APC = 'lsh-apc'
TYPE_SPLICE = 'splice'
CHOICES = ( CHOICES = (
( (
@ -857,6 +858,7 @@ class PortTypeChoices(ChoiceSet):
(TYPE_SC, 'SC'), (TYPE_SC, 'SC'),
(TYPE_SC_APC, 'SC/APC'), (TYPE_SC_APC, 'SC/APC'),
(TYPE_ST, 'ST'), (TYPE_ST, 'ST'),
(TYPE_SPLICE, 'Splice'),
) )
) )
) )