From 67ac5807788d244e52be2efe9fa71c5b0d9c1396 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludger=20K=C3=BCperkoch?= Date: Fri, 20 Nov 2015 15:53:25 +0100 Subject: [PATCH] Suppressed print output in setParam. --- pylot/core/read/inputs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pylot/core/read/inputs.py b/pylot/core/read/inputs.py index e6d609e3..cd66e845 100644 --- a/pylot/core/read/inputs.py +++ b/pylot/core/read/inputs.py @@ -145,7 +145,7 @@ class AutoPickParameter(object): def setParam(self, **kwargs): for param, value in kwargs.items(): self.__setitem__(param, value) - print(self) + #print(self) @staticmethod def _printParameterError(errmsg):