From 1ed29a838542ce78f602057aeff019fe9df16195 Mon Sep 17 00:00:00 2001 From: Sergei Trofimov Date: Thu, 8 Dec 2016 09:53:18 +0000 Subject: [PATCH] JunoEnergyInstrument: removed a stray print Removed a stray print statement from take_measurement() method. --- devlib/platform/arm.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/devlib/platform/arm.py b/devlib/platform/arm.py index 238acf0..43320ad 100644 --- a/devlib/platform/arm.py +++ b/devlib/platform/arm.py @@ -290,7 +290,5 @@ class JunoEnergyInstrument(Instrument): for chan in self.active_channels: value = values[headings.index(chan.name)] result.append(Measurement(value, chan)) - print result return result -