Files
ruff/resources/test/fixtures/flake8_simplify/SIM210.py
2023-01-07 15:32:34 -05:00

8 lines
148 B
Python

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