quoted-strings: Merge comparisons with in

To check if a variable is equal to one of many values, combine the
values into a tuple and check if the variable is contained in it
instead of checking for equality against each of the values. This
is faster, less verbose, and more readable.
This commit is contained in:
Dimitri Papadopoulos
2022-07-17 08:49:03 +02:00
parent 008db4aa09
commit 60b0f9f21f

View File

@@ -228,7 +228,7 @@ def check(conf, token, prev, next, nextnext, context):
return return
# Ignore multi-line strings # Ignore multi-line strings
if (not token.plain) and (token.style == "|" or token.style == ">"): if not token.plain and token.style in ("|", ">"):
return return
quote_type = conf['quote-type'] quote_type = conf['quote-type']