From 2824e81140d3a8e37464f758cf67f50f2f7afca7 Mon Sep 17 00:00:00 2001 From: Uwe Hermann Date: Wed, 23 Dec 2015 20:00:45 +0100 Subject: Use a Python list (not tuple) for OUT_BINARY. This is more consistent with annotation syntax and looks slightly better in most cases. --- decoders/i2c/pd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'decoders/i2c/pd.py') diff --git a/decoders/i2c/pd.py b/decoders/i2c/pd.py index ce0d699..2b8b302 100644 --- a/decoders/i2c/pd.py +++ b/decoders/i2c/pd.py @@ -224,7 +224,7 @@ class Decoder(srd.Decoder): self.putp(['BITS', self.bits]) self.putp([cmd, d]) - self.putb((bin_class, bytes([d]))) + self.putb([bin_class, bytes([d])]) for bit in self.bits: self.put(bit[1], bit[2], self.out_ann, [5, ['%d' % bit[0]]]) -- cgit v1.2.3-70-g09d2