diff options
Diffstat (limited to 'decoders/midi')
-rw-r--r-- | decoders/midi/pd.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/decoders/midi/pd.py b/decoders/midi/pd.py index b6cbd60..5845e03 100644 --- a/decoders/midi/pd.py +++ b/decoders/midi/pd.py @@ -33,9 +33,9 @@ class Decoder(srd.Decoder): license = 'gplv2+' inputs = ['uart'] outputs = ['midi'] - annotations = [ - ['text-verbose', 'Human-readable text (verbose)'], - ] + annotations = ( + ('text-verbose', 'Human-readable text (verbose)'), + ) def __init__(self, **kwargs): self.cmd = [] |