mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-05 01:50:56 +07:00
7 lines
119 B
Python
7 lines
119 B
Python
def func():
|
|
value = "not-none"
|
|
|
|
if value is not None:
|
|
return
|
|
print("None")
|
|
raise RuntimeError() |