]> sigrok.org Git - libsigrokdecode.git/blobdiff - decoders/transitioncounter.py
srd: Remove decode() docstrings.
[libsigrokdecode.git] / decoders / transitioncounter.py
index 70f1f1a932511864e26e9f24367ee31caaa51e3c..846e9d982fda48361bcf295fe162a1ed88ed02a3 100644 (file)
@@ -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):