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 I create a class with an __init__ function (and its docstring), VSCode doesn't read the docstring of class but only the __init__.
classToto:
""" The Toto class and details """class_attribute: str="""""class_attribute (str): (class attribute) The class attribute"""def__init__(self):
""" This is the constructor Attributes: instance_attribute (str): The instance attribute """self.instance_attribute: str=""obj=Toto()
Example:
I already opened an issue in vscode issues and I was redirected here. microsoft/vscode#242892
I want to show show python class docstring with __init__ docstring together. It doesn't make sense that class docstring is not shown anymore.
The text was updated successfully, but these errors were encountered:
This is a duplicate of this issue. Please refer to the link for an explanation of why this is by design. We're happy to revisit it if we receive more user feedback requesting a change in behavior. Thanks!
When I create a class with an
__init__
function (and its docstring), VSCode doesn't read the docstring of class but only the__init__
.Example:

I already opened an issue in vscode issues and I was redirected here. microsoft/vscode#242892
I want to show show python class docstring with
__init__
docstring together. It doesn't make sense that class docstring is not shown anymore.The text was updated successfully, but these errors were encountered: