diff options
Diffstat (limited to 'decoders')
-rw-r--r-- | decoders/counter/pd.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/decoders/counter/pd.py b/decoders/counter/pd.py index bb55fa7..798fb3a 100644 --- a/decoders/counter/pd.py +++ b/decoders/counter/pd.py @@ -19,8 +19,8 @@ import sigrokdecode as srd -(PIN_DATA, PIN_RESET) = range(2) -(ROW_EDGE, ROW_WORD, ROW_RESET) = range(3) +PIN_DATA, PIN_RESET = range(2) +ROW_EDGE, ROW_WORD, ROW_RESET = range(3) class Decoder(srd.Decoder): api_version = 3 |