mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-29 18:17:08 +07:00
13 lines
420 B
Python
13 lines
420 B
Python
if <weak_warning descr="Expression can be simplified">a == True</weak_warning>:
|
|
if <weak_warning descr="Expression can be simplified">b == False</weak_warning>:
|
|
if <weak_warning descr="Expression can be simplified">c != True</weak_warning>:
|
|
if <weak_warning descr="Expression can be simplified">d != False</weak_warning>:
|
|
pass
|
|
if a is False:
|
|
pass
|
|
var = a is not True
|
|
|
|
# PY-6876
|
|
if a == 0:
|
|
pass
|