mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
12 lines
233 B
Python
12 lines
233 B
Python
def func():
|
|
value = "not-none"
|
|
|
|
# pylint: disable=unused-argument1
|
|
if value is not None:
|
|
<selection>pass</selection><caret>
|
|
else:
|
|
print("None")
|
|
|
|
# pylint: disable=unused-argument2
|
|
print(value)
|