From f33524c7b7111335db58c7888f22f0f9c6cdd587 Mon Sep 17 00:00:00 2001
From: Christoph Schmidt <christoph.,schmidt@tugraz.at>
Date: Fri, 5 Jan 2024 14:37:07 +0100
Subject: [PATCH] Removed unnecessary print statement

---
 src/confighandler/controller/ConfigNode.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/confighandler/controller/ConfigNode.py b/src/confighandler/controller/ConfigNode.py
index 1b55605..c224623 100644
--- a/src/confighandler/controller/ConfigNode.py
+++ b/src/confighandler/controller/ConfigNode.py
@@ -62,7 +62,7 @@ class ConfigNode(CObject):
         # start with a copy so we don't accidentally modify the object state
         # or cause other conflicts
         state = self.__dict__.copy()
-        print(state)
+        #print(state)
         # remove the unpicklable entries
         # del state['keywords_changed']
 
-- 
GitLab