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
When using coc-python doHover action on the variable showed its type if it could be inferred by jedi. This doesn't work in coc-jedi. I'm wondering is it a limitation of the jedi-language-server or a bug in this extensions?
Steps to reproduce
defsum(a: int, b:int) ->int:
returna+b
Hovering over the a or b variable in the expression should show the type of the variable (easily inferred from the function signature).
The text was updated successfully, but these errors were encountered:
When using coc-python
doHover
action on the variable showed its type if it could be inferred by jedi. This doesn't work in coc-jedi. I'm wondering is it a limitation of thejedi-language-server
or a bug in this extensions?Steps to reproduce
Hovering over the
a
orb
variable in the expression should show the type of the variable (easily inferred from the function signature).The text was updated successfully, but these errors were encountered: