mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 22:09:38 +07:00
8 lines
160 B
Python
8 lines
160 B
Python
def func():
|
|
value = "not-none"
|
|
|
|
<caret>if value is None:
|
|
print("None")
|
|
# pylint: disable=unused-argument
|
|
else:
|
|
print("Not none") |