From 6e6163684bce046402391cfb2a5a96c275344df7 Mon Sep 17 00:00:00 2001
From: thijs snijder <snijder@astron.nl>
Date: Tue, 11 May 2021 13:54:36 +0200
Subject: [PATCH] removed double exception pass

---
 devices/SDP.py | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/devices/SDP.py b/devices/SDP.py
index a89c1fddf..28797d408 100644
--- a/devices/SDP.py
+++ b/devices/SDP.py
@@ -136,10 +136,7 @@ class SDP(hardware_device):
 
         # map an access helper class
         for i in self.attr_list():
-            try:
-                i.set_comm_client(self.OPCua_client)
-            except:
-                pass
+            i.set_comm_client(self.OPCua_client)
 
         self.OPCua_client.start()
 
-- 
GitLab