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