diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2020-04-10 21:27:16 +0200 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2020-04-11 14:51:57 +0200 |
commit | 5c9ab2c1d4baa2b2350b9ffe6e90f4d40d6f1c62 (patch) | |
tree | f3bbad9287615933123fb38914f1c5962b770a44 | |
parent | 4d9f16409d6ffde7bef4d555eb4f07a2f2e946d6 (diff) | |
download | libsigrokdecode-5c9ab2c1d4baa2b2350b9ffe6e90f4d40d6f1c62.tar.gz libsigrokdecode-5c9ab2c1d4baa2b2350b9ffe6e90f4d40d6f1c62.zip |
ltc26x7: Drop unnecessary annotation_rows item.
All annotation classes are on the same row anyway, and the row name
"LTC26x7 data" isn't all that much more useful than no row name at all.
-rw-r--r-- | decoders/ltc26x7/pd.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/decoders/ltc26x7/pd.py b/decoders/ltc26x7/pd.py index ea05a25..69913c5 100644 --- a/decoders/ltc26x7/pd.py +++ b/decoders/ltc26x7/pd.py @@ -62,9 +62,6 @@ class Decoder(srd.Decoder): ('address', 'Address'), ('data', '2 byte data'), ) - annotation_rows = ( - ('ltc26x7', 'LTC26x7 data', (0, 1, 2, 3)), - ) def __init__(self): self.reset() |