diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2016-05-15 15:42:48 +0200 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2016-05-15 15:42:48 +0200 |
commit | 92b7b49f6964f57a7d6fc4473645c993cfa4ba52 (patch) | |
tree | eab13c93ccaa8261e185c009c627f916b80ea221 /decoders/z80/pd.py | |
parent | 4045d68426fdc10ed3a0ac02d4bc353b37f1f252 (diff) | |
download | libsigrokdecode-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/z80/pd.py')
-rw-r--r-- | decoders/z80/pd.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/decoders/z80/pd.py b/decoders/z80/pd.py index e0d7ae4..a8acf53 100644 --- a/decoders/z80/pd.py +++ b/decoders/z80/pd.py @@ -110,7 +110,7 @@ class Decoder(srd.Decoder): ('warnings', 'Warnings', (Ann.WARN,)) ) - def __init__(self, **kwargs): + def __init__(self): self.prev_cycle = Cycle.NONE self.op_state = self.state_IDLE |