Does this issue occur when all extensions are disabled?: Yes/No
- VS Code Version: 1.78.1
- OS Version: mac 12.6.3 Monerey
Steps to Reproduce:
- in a python file paste in this code:
import typing
T = typing.TypeVar('T')
class A(typing.Generic[T]):
pass
B = A
a: A[int]
b: B[int]
- mouse over the type hint for a and b
- a is correctly defined using int, b lacks the defined int generic
Please fix vscode so type hints using B like B[int] will be understood by the visual studio code ide. Thanks!