diff options
Diffstat (limited to 'decoders/edid/pd.py')
-rw-r--r-- | decoders/edid/pd.py | 8 |
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 |