This piece of code raises an exception ` KeyError: 'a' ` ```python from typing import ClassVar class A: a: ClassVar[int] = 1 b: ClassVar[int] = a ``` Changing `a` to `A.a` fixes the issue! But that's not a valid python code.
This piece of code raises an exception
KeyError: 'a'Changing
atoA.afixes the issue! But that's not a valid python code.