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