mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-29 13:25:17 +00:00
17 lines
150 B
Python
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
|