You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Our codebase uses @click (for the record I disliked it). And because of that, the original function becomes f.callback. But now typing g(, jedi won't prompt for a,b,c anymore.
My question is, is there a way to help jedi to understand kwargs forwarding? I tried typing.ParamSpec, but seems like jedi doesn't support it yet.
I'm using jedi through jedi-language-server
The text was updated successfully, but these errors were encountered:
I noticed that jedi can handle basic kwargs forwarding:
Typing
g(
it promptsa,b,c
.However, the below won't work:
Our codebase uses
@click
(for the record I disliked it). And because of that, the original function becomesf.callback
. But now typingg(
, jedi won't prompt fora,b,c
anymore.My question is, is there a way to help jedi to understand kwargs forwarding? I tried typing.ParamSpec, but seems like jedi doesn't support it yet.
I'm using jedi through jedi-language-server
The text was updated successfully, but these errors were encountered: