Update choices.py

Updated the placing of the 100base-fx and lfx choices
This commit is contained in:
Daniel W. Anner 2023-01-05 16:05:58 -05:00 committed by GitHub
parent c4ca113680
commit 37ac891e76
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -921,6 +921,8 @@ class InterfaceTypeChoices(ChoiceSet):
(
'Ethernet (fixed)',
(
(TYPE_100ME_FX, '100BASE-FX (10/100ME FIBER)'),
(TYPE_100ME_LFX, '100BASE-LFX (10/100ME FIBER)'),
(TYPE_100ME_FIXED, '100BASE-TX (10/100ME)'),
(TYPE_100ME_T1, '100BASE-T1 (10/100ME Single Pair)'),
(TYPE_1GE_FIXED, '1000BASE-T (1GE)'),
@ -933,9 +935,7 @@ class InterfaceTypeChoices(ChoiceSet):
(
'Ethernet (modular)',
(
(TYPE_100ME_FX, '100BASE-FX (10/100ME FIBER)'),
(TYPE_100ME_LFX, '100BASE-LFX (10/100ME FIBER)'),
(TYPE_1GE_GBIC, 'GBIC (1GE)'),
(TYPE_1GE_GBIC, 'GBIC (1GE)')
(TYPE_1GE_SFP, 'SFP (1GE)'),
(TYPE_10GE_SFP_PLUS, 'SFP+ (10GE)'),
(TYPE_10GE_XFP, 'XFP (10GE)'),