summaryrefslogtreecommitdiff
path: root/decoders/uart/pd.py
diff options
context:
space:
mode:
authorUwe Hermann <uwe@hermann-uwe.de>2016-05-15 15:42:48 +0200
committerUwe Hermann <uwe@hermann-uwe.de>2016-05-15 15:42:48 +0200
commit92b7b49f6964f57a7d6fc4473645c993cfa4ba52 (patch)
treeeab13c93ccaa8261e185c009c627f916b80ea221 /decoders/uart/pd.py
parent4045d68426fdc10ed3a0ac02d4bc353b37f1f252 (diff)
downloadlibsigrokdecode-92b7b49f6964f57a7d6fc4473645c993cfa4ba52.tar.gz
libsigrokdecode-92b7b49f6964f57a7d6fc4473645c993cfa4ba52.zip
Use consistent __init__() format across all PDs.
The previous **kwargs some PDs had is not actually ever used, so drop it.
Diffstat (limited to 'decoders/uart/pd.py')
-rw-r--r--decoders/uart/pd.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/decoders/uart/pd.py b/decoders/uart/pd.py
index db1065d..0e6e548 100644
--- a/decoders/uart/pd.py
+++ b/decoders/uart/pd.py
@@ -160,7 +160,7 @@ class Decoder(srd.Decoder):
s, halfbit = self.startsample[rxtx], self.bit_width / 2.0
self.put(s - floor(halfbit), self.samplenum + ceil(halfbit), self.out_binary, data)
- def __init__(self, **kwargs):
+ def __init__(self):
self.samplerate = None
self.samplenum = 0
self.frame_start = [-1, -1]