From: Uwe Hermann Date: Wed, 7 Dec 2011 18:45:40 +0000 (+0100) Subject: srd: UART: Simplify a code snippet. X-Git-Tag: libsigrokdecode-0.1.0~242 X-Git-Url: https://sigrok.org/gitweb/?p=libsigrokdecode.git;a=commitdiff_plain;h=5b6b4f7759cf726bbfc00bd30b2e02cdea33cc6d;hp=6efe1e1106bd648705f6f704ed2f267c86035dac srd: UART: Simplify a code snippet. --- diff --git a/decoders/uart.py b/decoders/uart.py index efc1756..a089aa1 100644 --- a/decoders/uart.py +++ b/decoders/uart.py @@ -370,9 +370,7 @@ class Decoder(sigrok.Decoder): # TODO: Currently only supports 1 stop bit. def get_stop_bits(self, signal): # Skip samples until we're in the middle of the stop bit(s). - skip_parity = 0 - if self.parity != PARITY_NONE: - skip_parity = 1 + skip_parity = 0 if self.parity == PARITY_NONE else 1 if not self.reached_bit(self.num_data_bits + 1 + skip_parity): return []