In python I have a an object data
that maybe any object it will be.
In vscode v1, v2 = data # type: str, str
sentence I want v1, v2
will popup str method.
In vscode v1, v2 = data # type: dict, set
sentence I want v1, v2
will popup dict, set method.
data = (object, object)
v1, v2 = data # type: str, str
v11, v22= data # type: dict, set
But it show error in pylance
Type annotation not supported for this type of expression
Unexpected token at end of expression