mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-29 13:25:17 +00:00
7 lines
123 B
Python
7 lines
123 B
Python
c = b if not a else a # SIM212
|
|
|
|
c = b + c if not a else a # SIM212
|
|
|
|
c = b if not x else a # OK
|
|
|
|
c = a if a else b # OK
|