From: W. Trevor King Date: Mon, 14 Nov 2011 21:24:29 +0000 (-0500) Subject: Remove debugging *.dat file output from curve plugin. X-Git-Url: http://git.tremily.us/?p=hooke.git;a=commitdiff_plain;h=6a31af632ca1a3393ee365aa3f3bf118de4b776c Remove debugging *.dat file output from curve plugin. --- diff --git a/hooke/plugin/curve.py b/hooke/plugin/curve.py index f6e5892..ded624e 100644 --- a/hooke/plugin/curve.py +++ b/hooke/plugin/curve.py @@ -750,9 +750,6 @@ The name of the offset constant in the `.info` dictionary. b = self._get_constant(params, i2.info, 'scale 2') c = self._get_constant(params, i1.info, 'constant') out = a*i1 + b*i2 + c - i1.tofile('1.dat', sep='\n', format='%r') - i2.tofile('2.dat', sep='\n', format='%r') - out.tofile('3.dat', sep='\n', format='%r') self._set_column(hooke=hooke, params=params, column_name='output column', values=out)