From 053dc895db88655926b9c3c598215433b8fc26ad Mon Sep 17 00:00:00 2001
From: Neda Moeini <neda.moeini@geant.org>
Date: Thu, 18 Apr 2024 15:12:06 +0200
Subject: [PATCH] Fixed the switch model's enum.

---
 gso/products/product_blocks/switch.py | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/gso/products/product_blocks/switch.py b/gso/products/product_blocks/switch.py
index b0fdec46..660cfd81 100644
--- a/gso/products/product_blocks/switch.py
+++ b/gso/products/product_blocks/switch.py
@@ -15,9 +15,7 @@ from gso.utils.shared_enums import PortNumber, Vendor
 class SwitchModel(strEnum):
     """Enumerator for the different types of switches."""
 
-    EX3400_24 = "EX3400 24"
-    EX3400_32 = "EX3400 32"
-    EX3400_48 = "EX3400 48"
+    EX3400 = "EX3400"
 
 
 class SwitchBlockInactive(
-- 
GitLab