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
Using pylsp (which uses Jedi for its completion) in neovim, I get suggested the functions for both FooBuilder and BarBuilder.
The example in #1416 does work, so I know I've got that fix integrated in my system.
Because of this, I assume this has something to do with type[T] resolution, rather than overload resolution.
Version:
jedi 0.19.1
The text was updated successfully, but these errors were encountered:
When running this under sith.py with debugging enabled we get a warning which seems to stem from trying to execute type(..) as part of setting up the annotation to t. I'm not sure if that's actually related to the overloads issue though, since just inferring the type of t (again via sith) does seem to get the right result.
This is likely related to #1416 , hence the similar naming.
I have the following file
Using pylsp (which uses Jedi for its completion) in neovim, I get suggested the functions for both
FooBuilder
andBarBuilder
.The example in #1416 does work, so I know I've got that fix integrated in my system.
Because of this, I assume this has something to do with
type[T]
resolution, rather than overload resolution.Version:
The text was updated successfully, but these errors were encountered: