From 7f7ea759ebdc854beb0468b410f7d2382f291a4f Mon Sep 17 00:00:00 2001 From: Uwe Hermann Date: Wed, 1 Feb 2012 23:14:29 +0100 Subject: srd: Properly use append() for appending to lists. This is not only the canonical way to do it, it's also quite a bit faster and less memory-intensive than using '+='. --- decoders/mlx90614/mlx90614.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'decoders/mlx90614') diff --git a/decoders/mlx90614/mlx90614.py b/decoders/mlx90614/mlx90614.py index f50e568..4fa8a0d 100644 --- a/decoders/mlx90614/mlx90614.py +++ b/decoders/mlx90614/mlx90614.py @@ -69,10 +69,10 @@ class Decoder(srd.Decoder): self.state = 'GET TEMPERATURE' elif self.state == 'GET TEMPERATURE': if len(self.data) == 0: - self.data += [databyte] + self.data.append(databyte) self.ss = ss elif len(self.data) == 1: - self.data += [databyte] + self.data.append(databyte) self.es = es else: kelvin = (self.data[0] | (self.data[1] << 8)) * 0.02 -- cgit v1.2.3-70-g09d2