mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-18 12:31:26 +07:00
Inspection is used when an assignment is done on a function call but the inferred function doesn't return anything.
6 lines
57 B
Python
6 lines
57 B
Python
__author__ = 'ktisha'
|
|
|
|
def foo():
|
|
return 3
|
|
|
|
b = foo() |