8 lines
123 B
Python
8 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
|