summaryrefslogtreecommitdiff
path: root/decoders/edid
diff options
context:
space:
mode:
authorBert Vermeulen <bert@biot.com>2014-03-10 12:23:38 +0100
committerBert Vermeulen <bert@biot.com>2014-03-10 12:23:38 +0100
commitda9bcbd9f45b0153465c55ec726a0d76f6d7f01e (patch)
tree01190e6a1e52a3aedf5b2578716b8a470cd50fd0 /decoders/edid
parentd1e2129c7b01a760d48bcc8e7fc12956a62698c1 (diff)
downloadlibsigrokdecode-da9bcbd9f45b0153465c55ec726a0d76f6d7f01e.tar.gz
libsigrokdecode-da9bcbd9f45b0153465c55ec726a0d76f6d7f01e.zip
Probes, optional probes and annotations now take a tuple.
Annotation entries also consist of a tuple, not a list.
Diffstat (limited to 'decoders/edid')
-rw-r--r--decoders/edid/pd.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/decoders/edid/pd.py b/decoders/edid/pd.py
index f27cf93..41b7903 100644
--- a/decoders/edid/pd.py
+++ b/decoders/edid/pd.py
@@ -81,10 +81,10 @@ class Decoder(srd.Decoder):
license = 'gplv3+'
inputs = ['i2c']
outputs = ['edid']
- annotations = [
- ['fields', 'EDID structure fields'],
- ['sections', 'EDID structure sections'],
- ]
+ annotations = (
+ ('fields', 'EDID structure fields'),
+ ('sections', 'EDID structure sections'),
+ )
def __init__(self, **kwargs):
self.state = None