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

17 lines
150 B
Python

if a or not a:
pass
if (a or not a) or b:
pass
if (a or not a) and b:
pass
if a:
pass
if not a:
pass
if a or not b:
pass