Oct-19-2019, 01:42 PM
Hi,
I'm starting with python and I'm using vscode.
If I try to use "one" variable, vscode shows me the tooltip with the following content "one: str".
Is it possible to get that comment shown on visual studio code?
Thanks
I'm starting with python and I'm using vscode.
def a():
"""comment a"""
pass
one = "one" #try comment var one
"""try comment var one"""If I try to use "a" function, vscode shows me the tooltip with right text "Comment a".If I try to use "one" variable, vscode shows me the tooltip with the following content "one: str".
Is it possible to get that comment shown on visual studio code?
Thanks
