]> sigrok.org Git - libsigrokdecode.git/blobdiff - decoders/i2cfilter/pd.py
sdcard_sd: output CMD8 in cmd8-handler
[libsigrokdecode.git] / decoders / i2cfilter / pd.py
index 1a9f43328b6a37c8f09b39695f75b405c4d62e93..c3f148fc07e8ae78550b7afb9765cd20a363a04b 100644 (file)
@@ -38,7 +38,7 @@ class Decoder(srd.Decoder):
             'values': ('read', 'write', 'both')}
     )
 
-    def __init__(self, **kwargs):
+    def __init__(self):
         self.curslave = -1
         self.curdirection = None
         self.packets = [] # Local cache of I²C packets
@@ -87,4 +87,3 @@ class Decoder(srd.Decoder):
             self.packets = []
         else:
             pass # Do nothing, only add the I²C packet to our cache.
-