From b2b7e8b6e509edcffb113602c460844e97a8c06f Mon Sep 17 00:00:00 2001 From: Andy Spencer Date: Sun, 9 Feb 2014 20:24:48 +0000 Subject: [PATCH] Fix whitespace error --- vis/test.py | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/vis/test.py b/vis/test.py index e18191c..abb4d6f 100644 --- a/vis/test.py +++ b/vis/test.py @@ -86,20 +86,20 @@ class TestXively: def send(self): acc = Datastream(id='acc') acc.datapoints = [ - Datapoint(self.time0, [1, 1, 1]), - Datapoint(self.time1, [2, 2, 2]), - Datapoint(self.time2, [3, 3, 3]), - Datapoint(self.time3, [4, 4, 4]), - Datapoint(self.time4, [5, 5, 5]), + Datapoint(self.time0, [1, 1, 1]), + Datapoint(self.time1, [2, 2, 2]), + Datapoint(self.time2, [3, 3, 3]), + Datapoint(self.time3, [4, 4, 4]), + Datapoint(self.time4, [5, 5, 5]), ] mag = Datastream(id='mag') mag.datapoints = [ - Datapoint(self.time0, [1, 1, 1]), - Datapoint(self.time1, [2, 2, 2]), - Datapoint(self.time2, [3, 3, 3]), - Datapoint(self.time3, [4, 4, 4]), - Datapoint(self.time4, [5, 5, 5]), + Datapoint(self.time0, [1, 1, 1]), + Datapoint(self.time1, [2, 2, 2]), + Datapoint(self.time2, [3, 3, 3]), + Datapoint(self.time3, [4, 4, 4]), + Datapoint(self.time4, [5, 5, 5]), ] self.feed.datastreams = [ acc, mag ] -- 2.43.2