Open armoha opened 2 months ago
class Foo: class Descriptor: def __get__(self, obj, objtype=None): return self a = b = c = Descriptor() "this docstring is only visible for Foo.c"
Same docstring is shown for Foo.a/b/c
Docstring is missing while autocompletion and type hint work fine.
Thank you for reporting, I can reproduce it.
Environment data
Code Snippet
Repro Steps
Expected behavior
Same docstring is shown for Foo.a/b/c
Actual behavior
Docstring is missing while autocompletion and type hint work fine.