From d93a24d0bb99eff8cff01f2f53f253c9c55f3531 Mon Sep 17 00:00:00 2001 From: "Daniel W. Anner" Date: Wed, 15 Mar 2023 14:27:03 +0000 Subject: [PATCH] Removed type2-ieee802.3at as per described in #11984 --- netbox/dcim/choices.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/netbox/dcim/choices.py b/netbox/dcim/choices.py index c495c42ec..ad196a69e 100644 --- a/netbox/dcim/choices.py +++ b/netbox/dcim/choices.py @@ -1137,7 +1137,6 @@ class InterfacePoETypeChoices(ChoiceSet): TYPE_1_8023AF = 'type1-ieee802.3af' TYPE_2_8023AT = 'type2-ieee802.3at' - TYPE_2_8023AZ = 'type2-ieee802.3az' TYPE_3_8023BT = 'type3-ieee802.3bt' TYPE_4_8023BT = 'type4-ieee802.3bt' @@ -1152,7 +1151,6 @@ class InterfacePoETypeChoices(ChoiceSet): ( (TYPE_1_8023AF, '802.3af (Type 1)'), (TYPE_2_8023AT, '802.3at (Type 2)'), - (TYPE_2_8023AZ, '802.3az (Type 2)'), (TYPE_3_8023BT, '802.3bt (Type 3)'), (TYPE_4_8023BT, '802.3bt (Type 4)'), )