ruff/crates/ruff_linter/resources/test/fixtures/flake8_simplify/SIM211.py
2023-09-20 08:38:27 +02:00

7 lines
148 B
Python

a = False if b else True # SIM211
a = False if b != c else True # SIM211
a = False if b + c else True # SIM211
a = True if b else False # OK