From: Andy Spencer Date: Sun, 9 Feb 2014 20:24:48 +0000 (+0000) Subject: Fix whitespace error X-Git-Url: http://pileus.org/git/?p=~andy%2Fcsm213a-hw;a=commitdiff_plain;h=b2b7e8b6e509edcffb113602c460844e97a8c06f Fix whitespace error --- 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 ]