diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2012-01-03 20:26:29 +0100 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2012-01-03 20:26:29 +0100 |
commit | 71071bcfd36bed13b110931a6cc8189a1493dd2a (patch) | |
tree | 8375247ed06f39b350a6514019f5d34f0383b958 /decoders/transitioncounter.py | |
parent | 066e65a3a60ef5836d9e75b8dffeb55a152efe4d (diff) | |
download | libsigrokdecode-71071bcfd36bed13b110931a6cc8189a1493dd2a.tar.gz libsigrokdecode-71071bcfd36bed13b110931a6cc8189a1493dd2a.zip |
srd: Remove decode() docstrings.
This info is in the decoder's metadata, where the frontends can get it
from programmatically anyway.
Diffstat (limited to 'decoders/transitioncounter.py')
-rw-r--r-- | decoders/transitioncounter.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/decoders/transitioncounter.py b/decoders/transitioncounter.py index 70f1f1a..846e9d9 100644 --- a/decoders/transitioncounter.py +++ b/decoders/transitioncounter.py @@ -68,9 +68,6 @@ class Decoder(sigrok.Decoder): pass def decode(self, timeoffset, duration, data): - """Counts the low->high and high->low transitions in the specified - channel(s) of the signal.""" - # We should accept a list of samples and iterate... for sample in sampleiter(data, self.unitsize): |