From: Uwe Hermann Date: Fri, 10 Apr 2020 20:27:11 +0000 (+0200) Subject: ltc242x: Reduce unnecessarily many voltage formats. X-Git-Url: http://sigrok.org/gitweb/?p=libsigrokdecode.git;a=commitdiff_plain;h=42233a55607c17e7b6325dc231c66f35d2edbb22 ltc242x: Reduce unnecessarily many voltage formats. --- diff --git a/decoders/ltc242x/pd.py b/decoders/ltc242x/pd.py index a1ef389..27ae5b9 100644 --- a/decoders/ltc242x/pd.py +++ b/decoders/ltc242x/pd.py @@ -19,7 +19,7 @@ import sigrokdecode as srd -input_voltage_format = ['%fV', '%fV', '%.6fV', '%.2fV'] +input_voltage_format = ['%.6fV', '%.2fV'] class Decoder(srd.Decoder): api_version = 3