diff options
author | Bert Vermeulen <bert@biot.com> | 2014-03-10 12:23:38 +0100 |
---|---|---|
committer | Bert Vermeulen <bert@biot.com> | 2014-03-10 12:23:38 +0100 |
commit | da9bcbd9f45b0153465c55ec726a0d76f6d7f01e (patch) | |
tree | 01190e6a1e52a3aedf5b2578716b8a470cd50fd0 /decoders/rgb_led_spi/pd.py | |
parent | d1e2129c7b01a760d48bcc8e7fc12956a62698c1 (diff) | |
download | libsigrokdecode-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/rgb_led_spi/pd.py')
-rw-r--r-- | decoders/rgb_led_spi/pd.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/decoders/rgb_led_spi/pd.py b/decoders/rgb_led_spi/pd.py index 1c61122..6840164 100644 --- a/decoders/rgb_led_spi/pd.py +++ b/decoders/rgb_led_spi/pd.py @@ -29,9 +29,9 @@ class Decoder(srd.Decoder): license = 'gplv2' inputs = ['spi'] outputs = ['rgb_led_spi'] - annotations = [ - ['rgb', 'RGB values'], - ] + annotations = ( + ('rgb', 'RGB values'), + ) def __init__(self, **kwargs): self.cmd_ss, self.cmd_es = 0, 0 |