From d35473612a954bb411f78825b07b7644ba093110 Mon Sep 17 00:00:00 2001
From: su530201 <olivier.kaufmann@umons.ac.be>
Date: Sun, 30 Apr 2023 16:27:43 +0200
Subject: [PATCH] Fixes bug related to the default_mux_cabling in hardware
 system

---
 hardware_system.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/hardware_system.py b/hardware_system.py
index fcafcf8d..853f0c2d 100644
--- a/hardware_system.py
+++ b/hardware_system.py
@@ -30,6 +30,8 @@ default_mux_cabling = {}
 for mux in mux_boards:
     update_dict(default_mux_cabling, MUX_CONFIG[mux].pop('default_mux_cabling', {}))
 
+print(f'default_mux_cabling: {default_mux_cabling}')
+
 def elapsed_seconds(start_time):
     lap = datetime.datetime.utcnow() - start_time
     return lap.total_seconds()
-- 
GitLab