From fa8254be95f4789ae6816a10eef50313889ee29c Mon Sep 17 00:00:00 2001 From: thijs snijder <snijder@astron.nl> Date: Tue, 4 May 2021 17:40:56 +0200 Subject: [PATCH] removed old debug messages --- devices/clients/ini_client.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/devices/clients/ini_client.py b/devices/clients/ini_client.py index b7f35d656..fba170090 100644 --- a/devices/clients/ini_client.py +++ b/devices/clients/ini_client.py @@ -119,10 +119,8 @@ class ini_client(CommClient): self.config.read_file(self.config_file) value = self.config.get(section, name) - print("pre conversion: ", value, type(value)) # pre conversion value = array(value, dtype) - print("post conversion: ", value, type(value)) # pre conversion if dim_y > 1: # if data is an image, slice it according to the y dimensions value = numpy.array(numpy.split(value, indices_or_sections=dim_y)) -- GitLab