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
Since named parameters are not possible in a C function (See #167 ) we should think about removing names from the typehints to not confuse language servers like Jedi (see Discussion there).
However, I think other language servers like the one from PyCharm can make use of the names without autocompleting it with name=val (which does not work).
We would need to investigate where PyCharm gets the info from (docstring, where we will have names; or typestub, where will not have names anymore).
The text was updated successfully, but these errors were encountered:
Since named parameters are not possible in a C function (See #167 ) we should think about removing names from the typehints to not confuse language servers like Jedi (see Discussion there).
However, I think other language servers like the one from PyCharm can make use of the names without autocompleting it with
name=val
(which does not work).We would need to investigate where PyCharm gets the info from (docstring, where we will have names; or typestub, where will not have names anymore).
The text was updated successfully, but these errors were encountered: