summaryrefslogtreecommitdiff
path: root/testsuite
diff options
context:
space:
mode:
authorAnthony Sottile <asottile@umich.edu>2021-04-01 12:30:03 -0700
committerAnthony Sottile <asottile@umich.edu>2021-04-02 18:56:38 -0700
commit37e96aa5355e85e60c1003b1e85f6e29bcb8e20b (patch)
tree8174b1430b252369802cecb90abe8bc6851fda4e /testsuite
parent76edc0afe5ea95f09aaef17c11c9d26ac0729ac9 (diff)
downloadpep8-37e96aa5355e85e60c1003b1e85f6e29bcb8e20b.tar.gz
detect multiple E712 in a line
Diffstat (limited to 'testsuite')
-rw-r--r--testsuite/E71.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/testsuite/E71.py b/testsuite/E71.py
index abf4e7a..b4b53af 100644
--- a/testsuite/E71.py
+++ b/testsuite/E71.py
@@ -42,6 +42,8 @@ if res[1] == True:
#: E712
if res[1] != False:
pass
+#: E712 E712
+var = 1 if cond == True else -1 if cond == False else cond
#
#: E713