We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
from typing import cast class Test: a: int t = Test() cast(t.a, int) # error: Name "t.a" is not defined
This leave me being like:
Till I realize that I got the args the wrong way around.