diff options
Diffstat (limited to 'decoders/ds1307')
-rw-r--r-- | decoders/ds1307/pd.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/decoders/ds1307/pd.py b/decoders/ds1307/pd.py index 6c36f04..48649bf 100644 --- a/decoders/ds1307/pd.py +++ b/decoders/ds1307/pd.py @@ -44,9 +44,9 @@ class Decoder(srd.Decoder): license = 'gplv2+' inputs = ['i2c'] outputs = ['ds1307'] - annotations = [ - ['text', 'Human-readable text'], - ] + annotations = ( + ('text', 'Human-readable text'), + ) def __init__(self, **kwargs): self.state = 'IDLE' |