From 54f95389992d36c2af68d1029125d5dae74a1853 Mon Sep 17 00:00:00 2001 From: Vincent Hanewinkel Date: Thu, 14 Aug 2025 20:43:25 +0200 Subject: [PATCH] try fix --- Controll.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Controll.py b/Controll.py index b30760f..ccc4b01 100644 --- a/Controll.py +++ b/Controll.py @@ -11,7 +11,7 @@ controllers = {dev.serial: DeviceController(dev) for dev in sess.devices} serials = list(controllers.keys()) for i in enumerate(serials): - c = controllers[serials[i]] + c = controllers[i] c.set_mode(0, pysmu.Mode.SIMV) # CH A Hi-Z c.set_mode(1, pysmu.Mode.HI_Z) # CH B Hi-Z MainWindow.add_list_item(MainWindow, serials[i], i, c.start, c.stop)