mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
Display the intention only on parameter list and references to variadic parameters (not anywhere inside a function) and only if there are corresponding subscriptions / get() calls in function's body.
3 lines
66 B
Python
3 lines
66 B
Python
def foo(**kwargs):
|
|
print("ok"<caret>)
|
|
print(kwargs["foo"]) |