Code hints for *args, **kwargs
passed to function
#5677
ItsCubeTime
started this conversation in
Enhancement
Replies: 1 comment
-
Moving this issue to discussion as an enhancement request for comments and upvotes. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
In the following snippet:
When instantiating
Dummy
, autocompletion currently only suggests the immediate parameters (in this casea, *args, **kwargs
). Would be handy if you could also see the parameter names of any functions called insideDummy.__init__
(and any functions called inside those functions) that makes use of*args, **kwargs
.So, instead of hinting
a,*args,**kwargs
, it would hinta,b,c,*args,**kwargs
Beta Was this translation helpful? Give feedback.
All reactions