mirror of
https://github.com/astral-sh/ruff.git
synced 2025-10-01 22:31:47 +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
|