From 6a31af632ca1a3393ee365aa3f3bf118de4b776c Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Mon, 14 Nov 2011 16:24:29 -0500 Subject: [PATCH] Remove debugging *.dat file output from curve plugin. --- hooke/plugin/curve.py | 3 --- 1 file changed, 3 deletions(-) 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) -- 2.26.2