X-Git-Url: http://sigrok.org/gitweb/?a=blobdiff_plain;f=decoders%2Fmlx90614%2Fpd.py;h=0a3abbaf62daf1aef006cdc285b89bb131b96f86;hb=6ccb64feb20dcb7833b2452cdfface4d9aa2bd72;hp=eeb2743a794e45c0adb131c2d9bbab0bfe293f7a;hpb=e28f7aee3b96afeb543e0c3c29e3950ddd61a490;p=libsigrokdecode.git diff --git a/decoders/mlx90614/pd.py b/decoders/mlx90614/pd.py index eeb2743..0a3abba 100644 --- a/decoders/mlx90614/pd.py +++ b/decoders/mlx90614/pd.py @@ -34,7 +34,7 @@ class Decoder(srd.Decoder): ('kelvin', 'Temperature in Kelvin'), ) - def __init__(self, **kwargs): + def __init__(self): self.state = 'IGNORE START REPEAT' self.data = [] @@ -73,4 +73,3 @@ class Decoder(srd.Decoder): self.putx([1, ['Temperature: %3.2f K' % kelvin]]) self.state = 'IGNORE START REPEAT' self.data = [] -