mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 02:59:33 +07:00
10 lines
188 B
Python
10 lines
188 B
Python
def func():
|
|
value = "not-none"
|
|
|
|
# noinspection SomeInspection
|
|
if value is not None:
|
|
<selection>pass</selection><caret>
|
|
else:
|
|
print("None")
|
|
|
|
print(value) |