From: Uwe Hermann Date: Wed, 5 Sep 2018 23:26:22 +0000 (+0200) Subject: swim: Simplify a code snippet. X-Git-Url: https://sigrok.org/gitweb/?p=libsigrokdecode.git;a=commitdiff_plain;h=d08f387b1fb93855f6e56376716fe547b8f51452 swim: Simplify a code snippet. --- diff --git a/decoders/swim/pd.py b/decoders/swim/pd.py index 462779b..452805a 100644 --- a/decoders/swim/pd.py +++ b/decoders/swim/pd.py @@ -123,10 +123,7 @@ class Decoder(srd.Decoder): self.sync_reflen_min = math.floor(self.samplerate * 64 / self.HSI_max) self.sync_reflen_max = math.ceil(self.samplerate * 128 / (self.HSI_min / 2)) - if self.options['debug'] == 'yes': - self.debug = True - else: - self.debug = False + self.debug = True if self.options['debug'] == 'yes' else False # The SWIM entry sequence is 4 pulses at 2kHz followed by 4 at 1kHz. self.eseq_reflen = math.ceil(self.samplerate / 2048)